I have a row of 3 inline-blocks the span the width of the page horizontally:
When the page reaches 1000px wide I want the tiles to stack themselves as a pyramid:
And then at 460px they need to stack vertically:
My current html/css structure is:
<div class='tile-row'>
<div class='tile'></div>
<div class='tile'></div>
<div class='tile'></div>
</div>
.tile-row{
margin: 0 auto;
max-width:1485px;
}
.tile{
width:32%;
display: inline-block;
height: 200px;
}
How would I set up media queries to accomplish the above scenarios? Is there an easier way to do this without using media queries?