GM addStyle: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
(add !important to override existing)
No edit summary
Line 43: Line 43:


== Notes ==
== Notes ==
Add <code>!important</code> at the end of the code to override a existing value.
Add <code>!important</code> at the end of the code to override an existing value.


[[#top|top]]
[[#top|top]]


[[Category:API_Reference|G]]
[[Category:API_Reference|G]]

Revision as of 11:23, 26 July 2008

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

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

top