DOM level 2 mandates that this object should really be called a CSS2Properties object and not a style object. It has become known as a style object due to the Element property name that points at it.
The style objects supported by MSIE and Netscape Navigator 4.x are quite different. For a start, the style objects are associated with each element in MSIE and are accessible quite easily via the style property. For Netscape Navigator 4, the style properties are documented under the JSSTag object. JSS style control permits the definition of element styles before an element has been instantiated into the document. You cannot use JSS to make dynamic style alterations.
With the release of Netscape 6.0, the style manipulation is virtually the same across both browsers. This works in both MSIE and Netscape 6 now:
document.getElementById("anID").style.backgroundColor="#003366";
Nearly all the attributes described in CSS level 1 and 2 are now supported by the style object. Because the codebase in Netscape 6.0 is totally new and it has only just been released, you may experience some minor instability in its support for styles.
When you look at the properties of the style object, you will observe that there are many alternative ways to define properties. This is quite commonplace where Microsoft define an interface to an object themselves or enhance one that has been defined by someone else (W3C or Netscape perhaps). For example, you can specify border attributes for all four borders but there are also separately defined attributes for each border. Although it's not that confusing, it does mean that there are a lot of additional keywords to learn and, from a parsing point of view, the more keywords there are, the slower the parser is going to be. It also means that programmers will employ a variety of different techniques which then forces the competing browser manufacturers to support the Microsoft extensions too.
Minimalist design is obviously not a priority here. Arguably there are benefits from this approach, too, and some people prefer having a variety of alternative ways to script around a problem. The style object could have been just as flexible with fewer properties at the expense of having scripts with a few more lines.
In the case of the border attributes, we might easily have coped with having a single border attribute that applied to all four sides because there are relatively few circumstances where we would want a different border on each side of a cell. On the other hand, we would then have lost some functionality so perhaps having individually addressable sides is beneficial, but then we could have omitted the collective reference leading to a need to explicitly define all four. At least this way, everyone's needs are catered for.
The properties for this object may apply styles to a variety of object types. Some are very specifically applicable to only a particular sub-set of objects. You should generally assume that the style attribute can apply to objects of any kind unless the property description topic enumerates a set of objects. In that case, the style attribute should only be applied to those object types and will likely be ignored by others. There is a possibility that applying a completely inappropriate styling to an object may cause problems or unpredictable behavior.
Note that the object type for MSIE is a style object spelled without capitalization. The corresponding object type for Netscape 4 is a JSSTag object.
MSIE also supports a STYLE object, which is instantiated by the <STYLE> tag. This is an object that represents an inline style element within the HTML of the document.
Property | JavaScript | JScript | N | IE | Opera | NES | ECMA | DOM | CSS | HTML | Notes |
---|---|---|---|---|---|---|---|---|---|---|---|
azimuth | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
background | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
backgroundAttachment | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
backgroundColor | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
backgroundImage | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
backgroundPosition | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
backgroundPositionX | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
backgroundPositionY | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
backgroundRepeat | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
behavior | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | ![]() |
border | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderBottom | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderBottomColor | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
BorderBottomStyle | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
borderBottomWidth | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderCollapse | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
borderColor | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderLeft | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderLeftColor | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
borderLeftStyle | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
borderLeftWidth | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderRight | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderRightColor | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
borderRightStyle | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
borderRightWidth | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderSpacing | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | ![]() |
borderStyle | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
borderTop | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderTopColor | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
borderTopStyle | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
borderTopWidth | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
borderWidth | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
bottom | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
boxSizing | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
captionSide | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
cellSpacing | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() |
clear | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
clip | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
color | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
colorProfile | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
columnSpan | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() |
content | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
counterIncrement | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
counterReset | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
cssFloat | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
cssText | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ReadOnly. |
cue | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
cueAfter | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
cueBefore | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
cursor | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
direction | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
display | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
elevation | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
emptyCells | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
filter | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | ![]() |
float | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | 1 ![]() | ![]() | ![]() |
floatStyle | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
font | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
fontFamily | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
fontSize | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
fontSizeAdjust | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
fontStretch | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
fontStyle | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
fontVariant | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
fontWeight | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
height | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
imeMode | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
important | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | 1 ![]() | ![]() | - |
layoutGrid | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
layoutGridChar | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
layoutGridCharSpacing | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
layoutGridLine | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
layoutGridMode | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
layoutGridType | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
left | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
length | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ReadOnly. |
letterSpacing | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
lineBreak | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
lineHeight | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
listStyle | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
listStyleImage | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
listStylePosition | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
listStyleType | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
margin | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
marginBottom | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
marginLeft | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
marginRight | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
marginTop | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
markerOffset | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
marks | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
maxHeight | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
maxWidth | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
minHeight | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
minWidth | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
orphans | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
outline | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
outlineColor | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
outlineStyle | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
outlineWidth | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
overflow | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
overflowX | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
overflowY | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
padding | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
paddingBottom | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
paddingLeft | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
paddingRight | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
paddingTop | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
page | 1.5 ![]() | 5.5 ![]() | 6.0 ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
pageBreakAfter | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
pageBreakBefore | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
pageBreakInside | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
pause | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
pauseAfter | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
pauseBefore | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
pitch | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
pitchRange | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
pixelBottom | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
pixelHeight | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
pixelLeft | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
pixelRight | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
pixelTop | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
pixelWidth | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
playDuring | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
posBottom | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
posHeight | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
position | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
posLeft | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
posRight | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
posTop | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
posWidth | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
quotes | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
renderingIntent | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
richness | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
right | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
rowSpan | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | - |
rubyAlign | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
rubyOverhang | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
rubyPosition | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
scrollbar3dLightColor | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
scrollbarArrowColor | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
scrollbarBaseColor | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
scrollbarDarkShadowColor | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
scrollbarFaceColor | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
scrollbarHighlightColor | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
scrollbarShadowColor | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
size | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
speak | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
speakDate | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() |
speakHeader | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
speakNumeral | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
speakPunctuation | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
speakTime | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() |
speechRate | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
stress | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
styleFloat | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
tableLayout | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
textAlign | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
textAutospace | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
textDecoration | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
textDecorationBlink | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | ![]() |
textDecorationLineThrough | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | ![]() |
textDecorationNone | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | ![]() |
textDecorationOverline | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | ![]() |
textDecorationUnderline | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | ![]() |
textIndent | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
textJustify | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
textKashidaSpace | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
textShadow | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
textTransform | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
textUnderlinePosition | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
top | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
unicodeBidi | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | ![]() | ![]() | - |
verticalAlign | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | - |
visibility | 1.2 ![]() | 3.0 ![]() | 4.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
voiceFamily | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
volume | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
whiteSpace | 1.5 ![]() | 5.5 ![]() | 6.0 ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
widows | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | - |
width | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
wordBreak | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
wordSpacing | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.01 ![]() | ![]() | ![]() | ![]() | 2 ![]() | 1 ![]() | ![]() | ![]() |
wordWrap | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
writingMode | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | Proposed ![]() | ![]() | - |
zIndex | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | 2 ![]() | 2 ![]() | ![]() | ![]() |
zoom | ![]() | 5.5 ![]() | ![]() | 5.5 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
Method | JavaScript | JScript | N | IE | Opera | NES | ECMA | DOM | CSS | HTML | Notes |
---|---|---|---|---|---|---|---|---|---|---|---|
getAttribute() | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
getExpression() | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
item() | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
removeExpression() | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
setAttribute() | 1.5 ![]() | 5.0 ![]() | 6.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
setExpression() | ![]() | 5.0 ![]() | ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | - |
Event name | JavaScript | JScript | N | IE | Opera | NES | ECMA | DOM | CSS | HTML | Notes |
---|---|---|---|---|---|---|---|---|---|---|---|
onClick | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onDblClick | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onHelp | ![]() | 3.0 ![]() | ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
onKeyDown | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onKeyPress | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onKeyUp | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onMouseDown | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onMouseMove | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onMouseOut | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onMouseOver | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
onMouseUp | 1.5 ![]() | 3.0 ![]() | 6.0 ![]() | 4.0 ![]() | 5.0 ![]() | ![]() | ![]() | ![]() | ![]() | 4.0 ![]() | ![]() |
Prev | Home | Next |
STYLE.type | Up | style.azimuth |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |