mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
formatting contexts, and translate floats out of block formatting contexts. These improve Reddit.
12 lines
354 B
HTML
12 lines
354 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div style="height: 32px; margin: 0 0 0;">
|
|
<div style="float: left; background: blue; width: 64px; height: 32px;"></div>
|
|
<div style="overflow: hidden; height: 32px; background: violet;"></div>
|
|
</div>
|
|
<div style="background: green; float: left; width: 32px; height: 32px;"></div>
|
|
</body>
|
|
</html>
|
|
|