background-size-043-ref.html (692B)
1 <!DOCTYPE html> 2 3 <title>CSS Reftest Reference</title> 4 5 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 6 7 <style> 8 div#black-walls 9 { 10 border: solid 40px; 11 border-color: transparent black; 12 height: 400px; 13 width: 400px; 14 } 15 16 div#inner-orange 17 { 18 background-color: orange; 19 border: blue solid 16px; 20 height: 368px; /* 400px - 2 * 16px == 368px */ 21 margin: 0px auto; 22 /* the orange block is horizontally centered inside div#black-walls */ 23 width: 168px; /* 200px - 2 * 16px == 168px */ 24 } 25 </style> 26 27 <div id="black-walls"><div id="inner-orange"></div></div>