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.
This commit is contained in:
Patrick Walton 2015-09-03 15:35:32 -07:00
parent aeb8dce2d9
commit 683290e109
7 changed files with 196 additions and 9 deletions

View file

@ -0,0 +1,24 @@
<!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>