| ZVON > References > CSS2 Reference |
| Intro / Search / ZVON |
| Property: | clear |
| Inherited: | no |
| Value: | none | left | right | both | inherit |
| Initial: | none |
| Applies to: | block-level elements |
| Media: | visual |
| Percentages: | N/A |
|
<AAA> <BBB>text text text text <CCC>A sentence inside a text.</CCC> text text text text text text <DDD>Another sentence.</DDD> text text text text text text text text text text text text </BBB> </AAA> |
View BBB {display: block; width: 100pt; border: solid thin red} CCC, DDD {float: left; width: 30pt; border: solid thin blue} |
|
<AAA> <BBB>text text text text <CCC>A sentence inside a text.</CCC> text text text text text text <DDD>Another sentence.</DDD> text text text text text text text text text text text text </BBB> </AAA> |
View BBB {display: block; width: 100pt; border: solid thin red} CCC, DDD {float: left; width: 30pt; border: solid thin blue} DDD {clear: left} |