|
Layers |
Document Object Model |
DIV Tags |
Non-Standard Elements |
Style Sheets
Netscape Gecko-based browsers support the DIV tag as it is a part of the W3C HTML 4.0 standard. However, the src attribute for DIV, which allows a developer to call in an external file, is not a part of the standard and therefore unsupported. The DIV tag can still be used to create meaningful divisions within the content of a document; however, to insert external content in Netscape Gecko-based browsers, the use of the IFRAME tag is necessary.
The following are the only supported DIV attributes:
Attribute | Description |
Class | Defines the generic type of element. |
ID | Defines the element's unique identifier. |
Title | Defines a tooltip for an element. |
Style | Defines the style rules for a specific element. |
Lang | Defines the base language of an element's content. |
Dir | Defines the directionality of an element's content. |
Align | Defines the alignment of an element. |
onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup | Provides access to client-side scripting via an element. |
|