background-repeat-space-9.html (917B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Background: background-repeat: background image 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/#background-repeat"> 9 <link rel="match" href="background-repeat-space-9-ref.html"> 10 <meta name="assert" content="Test checks whether background-repeat: 'space' works correctly or not."> 11 <meta name="fuzzy" content="maxDifference=0-52; totalPixels=0-1680"> 12 <style type="text/css"> 13 .outer { 14 width: 106px; 15 height: 96px; 16 border: 1px solid black; 17 background-image: url(support/aqua-yellow-32x32.png); 18 background-repeat: space; 19 } 20 </style> 21 </head> 22 <body> 23 <div class="outer"></div> 24 </body> 25 </html>