mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 01:08:11 +00:00

Handle the clear property for floating boxes and add tracking for vertical clearence within an inline formatting context.
14 lines
No EOL
175 B
HTML
14 lines
No EOL
175 B
HTML
<style>
|
|
.a {
|
|
float: left;
|
|
width: 100px;
|
|
}
|
|
|
|
br {
|
|
clear: left;
|
|
}
|
|
</style>
|
|
|
|
<span class="a">A</span><span>1</span>
|
|
<br>
|
|
<span class="a">B</span><span>2</span> |