398797-style.css (337B)
1 /* Size the divs */ 2 div { width: 50px; height: 50px; } 3 4 /* Colors */ 5 div.green { background: lightgreen; } 6 div.blue { background: lightblue; } 7 span.yellow { background: yellow; } 8 9 /* Positioning */ 10 .abs { position: absolute; } 11 .rel { position: relative; } 12 .in { display: inline-block; } 13 .pos { top: 0px; left: 0px; }