servo/tests/ref/inline_block_margin_auto_zero_ref.html
Patrick Walton 683290e109 layout: Use a special path that treats margin: auto as zero for inline-block
inline size computation.

Places the search icon in the right place on the Google SERPs.
2015-09-04 20:42:57 -07:00

24 lines
335 B
HTML

<!DOCTYPE html>
<style>
html, body {
margin: 0;
}
section {
position: absolute;
width: 100px;
height: 100px;
top: 0;
left: 0;
background: gold;
}
nav {
position: absolute;
width: 200px;
height: 100px;
top: 0;
left: 100px;
background: blue;
}
</style>
<section></section><nav></nav>