background-size-cover-003-ref.html (320B)
1 <!doctype html> 2 <title>CSS Test Reference</title> 3 <style> 4 body { margin: 0 } 5 .first { 6 width: 100px; 7 height: 50px; 8 background: lime; 9 } 10 .space { 11 height: 50px; 12 } 13 .second { 14 width: 100px; 15 height: 100px; 16 background: lime; 17 } 18 </style> 19 <div class="first"></div> 20 <div class="space"></div> 21 <div class="second"></div>