OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 div { | |
4 background-image: -webkit-repeating-linear-gradient(top left, white, blu e 90px); | |
5 background-origin: content-box; | |
6 } | |
7 | |
8 #a { | |
9 padding: 0.1px; | |
10 width: 99.8px; | |
11 height: 99.8px; | |
12 } | |
13 | |
14 #b { | |
15 border: 1.1px solid black; | |
16 width: 97.8px; | |
17 height: 97.8px; | |
18 } | |
19 </style> | |
20 | |
21 <div id=a></div> | |
22 <div id=b></div> | |
23 | |
24 The gradients should fill the entire boxes and not repeat. | |
OLD | NEW |