HTML-kod:
<html>
<head>
<style>
body {
margin: 0;
padding: 0;
width: 1000px;
}
.box {
margin: 5%;
height: 200px;
width: 40%;
float: left;
display: block;
position: relative;
}
.box:nth-child(odd) div {
top: 75%;
}
.box div {
width: 100%;
height: 100%;
position: absolute;
background: blue;
}
</style>
</head>
<body>
<div class="box">
<div>
test
</div>
</div>
<div class="box">
<div>
test
</div>
</div>
<div class="box">
<div>
test
</div>
</div>
<div class="box">
<div>
test
</div>
</div>
<div class="box">
<div>
test
</div>
</div>
<div class="box">
<div>
test
</div>
</div>
</body>
</html>
Mitt fina hack av kod