179) for positioned boxes, even if
z-index is auto
?– don??™t support the value inherit
In Internet Explorer for Windows versions up to and including 7, a position value
of absolute will cause an element to gain a layout (p. 158), as will a value of fixed
in version 7.
Layout Properties
float
float: { left | right | none | inherit } ;
This property specifies whether or not
a box should float and, if so, if it should
float to the left or to the right. A floating
box is shifted to the left or to the right
as far as it can go, and non-floating
content in the normal flow will flow
around it on the opposite side. The
float property is ignored for elements
Example
This style rule makes the box generated by
the element with ID "nav" float to the left:
#nav {
float: left;
}
SPEC
version initial inherited
CSS1 none NO
BROWSER SUPPORT
Op9.2+ Saf1.3+ FF1+ IE5.5+
BUGGY FULL BUGGY BUGGY
The Ultimate CSS Reference 270
that are absolutely positioned. User agents are also allowed to ignore it when it??™s
applied to the root element.
Pages:
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411