# | Display | Position | Float | Size | Offset | Position |
---|---|---|---|---|---|---|
box | block | static | none | 346x1262 | 58.4375, 8 | 58.4375, 8 |
div1 | block | static | none | 50x50 | 69.4375, 19 | 59.4375, 9 |
div2 | block | static | none | 100x100 | 131.4375, 19 | 121.4375, 9 |
div3 | block | static | none | 150x150 | 243.4375, 19 | 233.4375, 9 |
display
has the value none
, user agents must ignore position
and float
. In this case, the element generates no box.
position
has the value absolute
or fixed
, display
is set to block
and float
is set to none
. The position of the box will be determined by the top
, right
, bottom
and left
properties and the box's containing block.
float
has a value other than none
, display
is set to block
and the box is floated.
display
properties apply as specified.