Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS clearing floats – general question Reply To: clearing floats – general question

#148556
Paulie_D
Member

The clear property on works on elements that are block level (and thus 100% wide by default) so as to ensure that they clear any previous bottom edges.

Here’s the spec. http://www.w3.org/TR/CSS2/visuren.html#propdef-clear

In CSS2 and CSS 2.1 the ‘clear’ property only applies to block-level elements.

Therefore authors should only use this property on block-level elements. If an implementation does support clear on inline elements, rather than setting a clearance as explained above, the implementation should force a break and effectively insert one or more empty line boxes (or shifting the new line box downward as described in section 9.5) to move the top of the cleared inline’s line box to below the respective floating box(es).