GM addStyle: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
m Text replace - "top " to "" |
|||
Line 29: | Line 29: | ||
:Usage: <code>'''css''' = "body { color:red }";</code> | :Usage: <code>'''css''' = "body { color:red }";</code> | ||
== Examples == | == Examples == |
Revision as of 21:45, 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>
.
Syntax
GM_addStyle( css )
- Value: Function
- Returns: undefined
- Compatibility: Greasemonkey 0.6.1+
Parameters Properties css
- All properties are optional except css.
Properties
css
- Value: String
- Usage:
css = "body { color:red }";
Examples
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.