GM addStyle: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (categorized)
(Symmetry update)
Line 1: Line 1:
{{underscore|title=GM_addStyle}}
{{underscore|title=GM_addStyle}}
__NOTOC__


= Syntax =
== Description ==
 
This [[API_reference|API]] method adds a string of CSS to the document.
 
It creates a new <code><style></code> element, adds the given CSS to it, and inserts it into the <code><head></code>.
 
[[#Examples|Examples]] | [[#Notes|Notes]]
 
== Syntax ==


'''GM_addStyle(''' ''css'' ''')'''
'''GM_addStyle(''' ''css'' ''')'''


= Description =
:Returns: Nothing
:Compatibility: Greasemonkey 0.6
 
:{| border="1" cellpadding="5"
|+ Parameters
!|'''Properties'''
|-
| <code>[[#css |css]]</code>
|}
:* All properties are optional except [[#css|css]].


Adds a string of CSS to the document.
[[#Description|top]]
=== Properties ===
----
==== <code>css</code> ====
:Value: String
:Usage: <code>'''css''' = "body { color:red }";</code>


Creates a new <code><style></code> element, adds the given CSS to it, and inserts it into the <code><head></code>.
[[#Description|top]] | [[#Syntax|back]]''


= Examples =
= Examples =
<code><pre>
GM_addStyle("body { color:white; background-color:black } img { border:0 }");
</pre></code>


GM_addStyle("body { color:red; }");
[[#Description|top]]


= Notes =
[[#Description|top]]


[[Category:API Reference|A]]
[[Category:API_Reference|G]]

Revision as of 03:52, 7 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 )

Returns: Nothing
Compatibility: Greasemonkey 0.6
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