mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
formatting contexts, and translate floats out of block formatting contexts. These improve Reddit.
12 lines
336 B
HTML
12 lines
336 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="height: 32px; background: violet;"></div>
|
|
</div>
|
|
<div style="background: green; float: left; width: 32px; height: 32px;"></div>
|
|
</body>
|
|
</html>
|
|
|