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