mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:27:45 +00:00
LibWeb: Handle float clearing specified on line break elements
This commit is contained in:
parent
0652cc48c0
commit
b12820c967
6 changed files with 60 additions and 9 deletions
|
@ -0,0 +1,15 @@
|
|||
<style>
|
||||
.a {
|
||||
float: left;
|
||||
width: 100px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
br {
|
||||
clear: left;
|
||||
}
|
||||
</style>
|
||||
|
||||
<span class="a">A</span><span>1</span>
|
||||
<br>
|
||||
<span class="a">B</span><span>2</span>
|
Loading…
Add table
Add a link
Reference in a new issue