border-image-repeat-space-10.html (817B)
1 <!doctype html> 2 <html> 3 <title>CSS Border Image: border-image-repeat:space</title> 4 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 5 <link rel="help" href="https://www.w3.org/TR/css3-background/#the-border-image-repeat"> 6 <link rel="match" href="border-image-repeat-space-10-ref.html"> 7 <meta name="fuzzy" content="maxDifference=0-163;totalPixels=0-2400"> 8 <meta name="assert" content="Check that 'border-image-repeat:space' renders as expected by comparing to something not using 'border-image-repeat:space'."> 9 10 <style> 11 div { 12 border: 27px solid; 13 border-image: url("support/border.png") 27 space; 14 border-image-width: auto; 15 } 16 </style> 17 18 <div style="width: 26px; height: 26px"></div> 19 <div style="width: 53px; height: 53px"></div> 20 <div style="width: 70px; height: 70px"></div> 21 22 </html>