Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 #block1, #block2 {
6 height: 20px;
7 background-color: orange;
8 }
9 #multi-column {
10 height: 20px;
11 background-color: blue;
12 }
13 .spacer {
14 height: 20px;
15 }
16 </style>
17 </head>
18 <body>
19 <div id="block1"></div>
20 <div class="spacer"></div>
21 <div id="multi-column"></div>
22 <div class="spacer"></div>
23 <div id="block2"></div>
24 </body>
25 </html>