I've got a 6x4 array of 150px divs, each with a 5px margin (imagine Metro UI). I've also got a modal div. The square divs are all display: inline-block, centered with text-align in a parent div, and there's a line break after every 6 (to make the 6x4 grid). When my modal (also centered, with margin) pops up, it is slightly unaligned with the tiles that are also centered. Why might this be? This wouldn't be a big deal, but it aligns with the square tiles below it, and it looks horrible having everything 1-2 pixel(s) off. Could there be a difference in text-align: center and margin: auto causing this?
From the HTML:
<div id="container">
<br />
<div id="tile11">
</div>
<div id="tile12">
</div>
<div id="tile13">
</div>
<div id="tile14">
</div>
<div id="tile15">
</div>
<div id="tile16">
</div>
<br />
<div id="tile21">
</div>
<div id="tile22">
</div>
...........
<div id="tile46">
</div>
</div>
From CSS:
#container {
background: #000000;
width: 1000px;
height: 680px;
z-index: 1;
text-align: center;
margin: 10px auto 0px auto;
}
#tile44 {
background: #333333;
width: 150px;
height: 150px;
margin: 5px;
display: inline-block;
z-index: 1;
}