mirror of
https://github.com/servo/servo.git
synced 2025-07-29 10:10:34 +01:00
formatting contexts, and translate floats out of block formatting contexts. These improve Reddit.
11 lines
336 B
HTML
11 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>
|
|
|