Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!doctype html>
2 <html lang="en">
4 <head>
5 <meta charset="utf-8">
6 <title>Grid</title>
7 <style>
8 body {
9 background: #fff;
10 }
11 .r {background: red; width: 300px; height: 50px}
12 .g {background: green; width: 300px; height: 50px}
13 </style>
14 </head>
16 <body>
17 <div class=r></div>
18 <div class=g></div>
19 <div class=r></div>
20 <div class=g></div>
21 <div class=r></div>
22 <div class=g></div>
23 </body>
24 </html>