OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 .box { | 5 .box { |
6 height: 50px; | 6 height: 50px; |
7 width: 300px; | 7 width: 300px; |
8 margin: 10px; | 8 margin: 10px; |
9 background-image: -webkit-linear-gradient(black, black); | 9 background-image: -webkit-linear-gradient(black, black); |
10 border-radius: 25px; | 10 border-radius: 25px; |
11 border: 4px solid green; | 11 border: 4px solid green; |
12 -webkit-transform: scale(0.25); | 12 transform: scale(0.25); |
13 } | 13 } |
14 </style> | 14 </style> |
15 </head> | 15 </head> |
16 <body> | 16 <body> |
17 <!-- You should see no red leaking through the inner edge of the border. --> | 17 <!-- You should see no red leaking through the inner edge of the border. --> |
18 <div style="background-color: red; height: 60px; width: 310px"> | 18 <div style="background-color: red; height: 60px; width: 310px"> |
19 <div class="box"></div> | 19 <div class="box"></div> |
20 </div> | 20 </div> |
21 </body> | 21 </body> |
22 </html> | 22 </html> |
OLD | NEW |