OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
| 4 body { overflow: hidden; } |
4 div { | 5 div { |
5 border-width: 105px 150px 150px 105px; | 6 border-width: 105px 150px 150px 105px; |
6 width: 75px; | 7 width: 75px; |
7 height: 75px; | 8 height: 75px; |
8 margin: 10px; | 9 margin: 10px; |
9 display: inline-block; | 10 display: inline-block; |
10 } | 11 } |
11 | 12 |
12 div.rr { | 13 div.rr { |
13 -webkit-border-image: url("resources/border-image.png") 21 30 30 21
repeat repeat; | 14 -webkit-border-image: url("resources/border-image.png") 21 30 30 21
repeat repeat; |
(...skipping 13 matching lines...) Expand all Loading... |
27 </style> | 28 </style> |
28 </head> | 29 </head> |
29 <body> | 30 <body> |
30 <div class="rr"></div> | 31 <div class="rr"></div> |
31 <div class="rs"></div> | 32 <div class="rs"></div> |
32 <br> | 33 <br> |
33 <div class="sr"></div> | 34 <div class="sr"></div> |
34 <div class="ss"></div> | 35 <div class="ss"></div> |
35 </body> | 36 </body> |
36 </html> | 37 </html> |
OLD | NEW |