background-repeat-round-1c.html (1184B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Background: background-repeat: background image round</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-round-1-ref.html"> 10 <meta name="assert" content="Test checks whether background-repeat: 'repeat round' works correctly or not."> 11 <style type="text/css"> 12 .outer { 13 width: 72px; 14 height: 72px; 15 border: 1px solid black; 16 background-size: 36px 36px; 17 background-image: url(support/aqua-yellow-32x32.png); 18 background-repeat: repeat round; 19 } 20 .outer_gradient { 21 width: 72px; 22 height: 72px; 23 border: 1px solid black; 24 background-size: 36px 36px; 25 background-image: linear-gradient(to top left, red, green); 26 background-repeat: repeat round; 27 } 28 </style> 29 </head> 30 <body> 31 <div class="outer"></div> 32 <div class="outer_gradient"></div> 33 </body> 34 </html>