vote up 1 vote down star
1

What are the exact specs of display:block? I know quite a few of the specific things applying this to an element will do but I would like to hear them all.

Thanks.

flag

3 Answers

vote up 3 vote down check

Quote from W3C

In a block formatting context, boxes are laid out one after the other, vertically, beginning at the top of a containing block. The vertical distance between two sibling boxes is determined by the 'margin' properties. Vertical margins between adjacent block boxes in a block formatting context collapse.

In a block formatting context, each box's left outer edge touches the left edge of the containing block (for right-to-left formatting, right edges touch). This is true even in the presence of floats (although a box's content area may shrink due to the floats).

link|flag
vote up 0 vote down

From the CSS2 spec:

This value causes an element to generate a block box.

More info can be found on Quirksmode

link|flag
vote up 1 vote down

Autistic Cuckoo's article about display properties and their differences (part 1, part 2, part 3) is also a recommended read.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.