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