HTML Home
HTML Tags Reference
Selected Reading
© 2013 TutorialsPoint.COM
|
HTML <ilayer> tag
Advertisements
Function:
The HTML <ilayer> tag is used to create a layer that occupies space in the containing text flow. Subsequent content is placed after the space occupied by the <ilayer>.
This is in contrast to the <layer> tag, which creates a layer above the containing text flow, allowing subsequent content to be placed under the layer just created.
Difference between HTML and XHTML:
This tag is supported by Netscape only.
Example:
This <ilayer top="4">word</ilayer> is shifted down, while
this <ilayer left="10">one</ilayer> is shifted over. With a negative
value, words can be moved <ilayer top="-4">up</ilayer> and to
the <ilayer left="-10">left</ilayer>.
|
This will produce following result:
|
This word is shifted down, while
this one is shifted over. With a negative
value, words can be moved up and to
the left.
|
NOTE: This example will work in Netscape 4 only.
Online Practice:
To Become more comfortable - Do Online Practice
Attributes:
| Attribute | Value | Description |
| above | layer name | The name of the inline layer that will be positioned directly above the current layer in the z-order. |
| background | URL | A filename or URL for an image upon which the inline layer's text and images will appear. |
| below | layer name | The name of the inline layer that will be positioned directly below the current layer in the z-order. |
| bgcolor | rgb(x,x,x) #xxxxxx colorname | The color to use for the inline layer background. |
| clip | number | The coordinates of the inline layer's viewable area. |
| height | pixels | The inline layer's height, in pixels. |
| left | number | The position of the left side of the inline layer. If the current inline layer is part of another layer.called the parent layer-then the position is relative to the parent layer. |
| name | layer name | The name of the inline layer. |
| pagex | number | The position of the left side of the inline layer relative to the browser window. |
| pagey | number | The position of the top of the inline layer relative to the browser window. |
| src | URL | The URL of a page that will appear inside the inline layer. |
| top | number | The position of the top of the inline layer. If the current inline layer is part of another layer--called the parent layer--then the position is relative to the parent layer. |
| visibility | show hide inherit | Determines whether the inline layer is visible. |
| width | pixels | The inline layer's width, in pixels. |
| z-index | number | The inline layer's position within the z-order. Inline layers with higher Z-INDEX values are positioned above inline layers with lower Z-INDEX values. |
Standard Attributes:
| Attribute | Description |
| class | Document wide identifier |
| id | Document wide identifier |
| style | Helps to include inline casecadubf style sheet. |
Advertisements
|
|
|