origin-border-box-ref.html (1095B)
1 <!DOCTYPE html> 2 3 <meta charset="UTF-8"> 4 5 <title>CSS Reftest reference</title> 6 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 8 9 <style> 10 body 11 { 12 height: 568px; 13 overflow-y: hidden; 14 width: 584px; 15 } 16 17 div 18 { 19 display: inline-block; 20 vertical-align: bottom; 21 } 22 23 div.image 24 { 25 height: 288px; 26 width: 514px; 27 } 28 29 div#multiple 30 { 31 background-image: url('../background-origin/support/yellow-orange-blue-160x160.png'); 32 bottom: 288px; 33 margin-top: 8px; 34 position: relative; 35 } 36 37 div.light-blue-border 38 { 39 border: 16px solid rgba(60, 150, 255, 0.4); 40 bottom: 288px; 41 height: 256px; 42 position: relative; 43 width: 482px; 44 } 45 </style> 46 47 <div class="image"><img src="../background-origin/support/yellow-orange-blue-160x160.png" alt="Image download support must be enabled"></div><div class="light-blue-border"></div><br> 48 49 <div class="image" id="multiple"></div><div class="light-blue-border" style="bottom: 576px;"></div>