GM addStyle: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (Text replace - "{{Core samp" to "{{Samp")
m (Text replace - "top " to "")
Line 38: Line 38:
GM_addStyle("body { color: white; background-color: black } img { border: 0 }");
GM_addStyle("body { color: white; background-color: black } img { border: 0 }");
</pre>}}
</pre>}}
[[#top|top]]


Spanned over multiple lines using E4X:
Spanned over multiple lines using E4X:
Line 49: Line 47:
]]></>.toString());
]]></>.toString());
</pre>}}
</pre>}}
[[#top|top]]


Spanned over multiple lines using line continuation character.
Spanned over multiple lines using line continuation character.
Line 58: Line 54:
   .footer { width: 875px; }");
   .footer { width: 875px; }");
</pre>}}
</pre>}}
[[#top|top]]


== Notes ==
== Notes ==
Add <code>!important</code> at the end of the code to override an existing value.
Add <code>!important</code> at the end of the code to override an existing value.
[[#top|top]]


[[Category:API_Reference|A]]
[[Category:API_Reference|A]]

Revision as of 21:28, 3 February 2010


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: undefined
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

Template:Samp

Spanned over multiple lines using E4X: Template:Good samp

Spanned over multiple lines using line continuation character. Template:Good samp

Notes

Add !important at the end of the code to override an existing value.