Working With Absolutely Positioned ElementsDynamic HTML includes cascading style sheet (CSS) features that allow HTML elements to be absolutely positioned on a page, independent of their position within the HTML stream. An absolutely positioned HTML element has its CSS POSITION style attribute set to absolute instead of static. Absolutely positioned elements also have a z-index, which specifies the visual order of overlapping absolutely positioned elements and how absolutely positioned elements are ordered relative to elements in the HTML stream. The following elements can be absolutely positioned: APPLET, BUTTON, DIV, EMBED, HR, IFRAME, IMG, INPUT, MARQUEE, OBJECT, SELECT, SPAN, TABLE, TEXTAREA, FIELDSET. The absolutely positioned editing commands will have no effect on elements other than these. Absolute positioning does not apply to design-time controls.
|