mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 09:52:31 +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> |