border-image-repeat-space-1.html (1012B)
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-1-ref.html"> 10 <meta name="assert" content="The test checks whether border-image-repeat: 'space' uses the correct formula when a single image fits."> 11 <meta name="fuzzy" content="maxDifference=0-27; totalPixels=0-800"> 12 <style type="text/css"> 13 .outer { 14 position: absolute; 15 left: 0px; 16 top: 0px; 17 border: 27px solid transparent; 18 border-image: url("support/border.png") 27; 19 border-image-repeat: space space; 20 width: 35px; 21 height: 35px; 22 } 23 </style> 24 </head> 25 <body> 26 <div class="outer"></div> 27 </body> 28 </html>