border-image-shorthand-001-ref.html (644B)
1 <!DOCTYPE html> 2 3 <meta charset="UTF-8"> 4 5 <title>CSS Reference Test</title> 6 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 8 9 <style> 10 div 11 { 12 border: 10px double red; 13 border-image-outset: 2; 14 border-image-repeat: round stretch; 15 border-image-slice: 30; 16 border-image-source: url("../support/blue-and-red-diamonds-81x81.png"); 17 border-image-width: 4; 18 height: 150px; 19 margin: 50px 0px 100px 50px; 20 width: 150px; 21 } 22 </style> 23 24 <p>Test passes if there are <strong>2 identical images.</strong> 25 26 <div></div> 27 28 <div></div>