When you add Positioning property/values to a <div> (divisional) tag it becomes a layer. A layer is a seperate "element" that can "float" above a page. You can ...
IMPORTANT NOTE : You may wish to read the article on Layout & positioningWITHOUT layer first, to ensure you understand the concept of <div> tags and nested <div> tags.
In addition to all the usual property/values of a <div> tag (width, padding, border, colour etc), layers can have the following property/values ...
Layers can be positioned with absolute accuracy in the page, or a relative distance from another element when they are nested.
Layers in an HTML document can be positioned in 3 ways ...
A layers position can be defined in pixels as a distance from the top, bottom, left and right of a browser window or an element (such as a <div> that it is nested within.
The Z-index allows you to control which elements are in front and which are behind. A layer with a Z-index of 2 will be on top of a layer with a Z-index of 1. You can also overlap elements and create clipping paths.
You can control the visibility of a layer with JavaScript. Click here for an example.
You can find some HTML and CSS layer examples here.
Click here to read a tutorial on creating divs and layers with Dreamweaver.
None at present