Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | /* Size the divs */ |
michael@0 | 2 | div { width: 50px; height: 50px; } |
michael@0 | 3 | |
michael@0 | 4 | /* Colors */ |
michael@0 | 5 | div.green { background: lightgreen; } |
michael@0 | 6 | div.blue { background: lightblue; } |
michael@0 | 7 | span.yellow { background: yellow; } |
michael@0 | 8 | |
michael@0 | 9 | /* Positioning */ |
michael@0 | 10 | .abs { position: absolute; } |
michael@0 | 11 | .rel { position: relative; } |
michael@0 | 12 | .in { display: inline-block; } |
michael@0 | 13 | .pos { top: 0px; left: 0px; } |