border-image-repeat-space-4.html (950B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Border Image: border-image-repeat: space</title> 6 <link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com"> 7 <link rel="author" title="Mozilla" href="https://www.mozilla.org"> 8 <link rel="help" href="https://www.w3.org/TR/css3-background/#the-border-image-repeat"> 9 <link rel="match" href="border-image-repeat-space-4-ref-1.html"> 10 <meta name="assert" content="The test checks whether border-image-repeat: 'space' uses the correct formula when a single image fits exactly."> 11 <style type="text/css"> 12 .outer { 13 position: absolute; 14 left: 0px; 15 top: 0px; 16 border: 27px solid transparent; 17 border-image: url("support/border.png") 27; 18 border-image-repeat: space space; 19 width: 27px; 20 height: 27px; 21 } 22 </style> 23 </head> 24 <body> 25 <div class="outer"></div> 26 </body> 27 </html>