What does “both” mean in <div style=“clear:both”>
问题 <div style="float:left">Hello</div> <div style="float:right">Howdy dere pardner</div> <div style="clear:both"></div> I get what it does, but why the name both ? What does both mean ? 回答1: Both means "every item in a set of two things". The two things being "left" and "right" 回答2: Description of the possible values: left : No floating elements allowed on the left side right : No floating elements allowed on the right side both : No floating elements allowed on either the left or the right side