GM addStyle: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
mNo edit summary
m (→‎Syntax: Monkey colored tables)
Line 18: Line 18:
:Compatibility: [[Version_history#0.6.1|Greasemonkey 0.6.1+]]
:Compatibility: [[Version_history#0.6.1|Greasemonkey 0.6.1+]]


:{| border="1" cellpadding="5"
:{| cellpadding="5" style="border-style:solid; background:#FFFFE0;"
|+ Parameters
|+ Parameters
!|'''Properties'''
!style="background:#CC9900;"|'''Properties'''
|-
|-
| <code>[[#css |css]]</code>
| <code><span style="background:#FFFFE0;">[[#css |css]]</span></code>
|}
|}
:* All properties are optional except [[#css|css]].
:* All properties are optional except [[#css|css]].

Revision as of 22:29, 11 December 2007

Template:Underscore


Description

This API method adds a string of CSS to the document.

It creates a new <style> element, adds the given CSS to it, and inserts it into the <head>.

Examples | Notes

Syntax

GM_addStyle( css )

Value: Function
Returns: Nothing
Compatibility: Greasemonkey 0.6.1+
Parameters
Properties
css
  • All properties are optional except css.

top

Properties


css

Value: String
Usage: css = "body { color:red }";

top | back

Examples

GM_addStyle("body { color:white; background-color:black } img { border:0 }");

top

Notes

top