GM addStyle: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (→‎Examples: As this isn't GM for Chrome, neutralized new sample... I have yet to find this in ECMA-262 specificiation btw... sf)
m (display title fix)
Line 1: Line 1:
{{underscore|title=GM_addStyle}}
{{DISPLAYTITLE:GM_addStyle}}
__NOTOC__
__NOTOC__
{{Greasemonkey Manual TOC}}
{{Greasemonkey Manual TOC}}

Revision as of 13:49, 30 October 2009



Greasemonkey Manual
Using Greasemonkey
Installing Scripts
Monkey Menu
Getting Help
User Script Authoring
Editing
Environment
API

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:Core samp

top

Spanned over multiple lines using E4X: Template:Good samp

top

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

top

Notes

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

top