background-repeat-space-7

CSS Background: background-repeat: background image space

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Assertion
Test checks whether background-repeat: 'space round' works correctly or not.

Source

 1 <!DOCTYPE html>
 2 <html><head>
 3     <meta charset="utf-8">
 4     <title>CSS Background: background-repeat: background image space</title>
 5     <link href="mailto:ethlin@mozilla.com" rel="author" title="Ethan Lin">
 6     <link href="https://www.mozilla.org" rel="author" title="Mozilla">
 7     <link href="https://www.w3.org/TR/css3-background/#background-repeat" rel="help">
 8     <link href="reference/background-repeat-space-7-ref.htm" rel="match">
 9     <meta content="Test checks whether background-repeat: 'space round' works correctly or not." name="assert">
10     <style type="text/css">
11       .outer {
12         width: 106px;
13         height: 192px;
14         border: 1px solid black;
15         background-size: 32px 60px;
16         background-image: url(aqua-yellow-32x32.png);
17         background-repeat: space round;
18       }
19       .outer_gradient {
20         width: 106px;
21         height: 192px;
22         border: 1px solid black;
23         background-size: 32px 60px;
24         background-image: linear-gradient(to top left, red, green);
25         background-repeat: space round;
26       }
27     </style>
28   </head>
29   <body>
30     <div class="outer"></div>
31     <div class="outer_gradient"></div>
32   
33 
34 
35 </body></html>