OLD | NEW |
1 <style> | 1 <style> |
2 div { | 2 div { |
3 border-width: 21px 30px 30px 21px; | 3 border-width: 21px 30px 30px 21px; |
4 width: 75px; | 4 width: 75px; |
5 height: 75px; | 5 height: 75px; |
6 margin: 10px; | 6 margin: 10px; |
7 border-image-source: url(resources/border-image.png); | 7 border-image-source: url(resources/border-image.png); |
8 border-image-slice: 21 30 30 21 fill; | 8 border-image-slice: 21 30 30 21 fill; |
9 border-image-width: 1; | 9 border-image-width: 1; |
10 border-image-repeat: repeat; | 10 border-image-repeat: repeat; |
| 11 border-style: solid; |
| 12 border-color: white; |
11 } | 13 } |
12 </style> | 14 </style> |
13 <div></div> | 15 <div></div> |
14 This should look like the above, only scaled up by a factor of 2: | 16 This should look like the above, only scaled up by a factor of 2: |
15 <div style="zoom: 2;"></div> | 17 <div style="zoom: 2;"></div> |
OLD | NEW |