OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <style> | |
4 .shape { | |
5 font: 30px/1 Ahem, sans-serif; | |
6 color: green; | |
7 margin: 20px; | |
8 } | |
9 .content-box { | |
10 shape-inside: content-box; | |
11 background-clip: content-box; | |
12 background-color: red; | |
13 width: 90px; | |
14 height: 90px; | |
15 } | |
16 .rounded-content-box { | |
17 shape-inside: content-box; | |
18 background-clip: content-box; | |
19 background-color: grey; | |
20 width: 90px; | |
21 height: 90px; | |
22 border-radius: 30px; | |
23 } | |
24 </style> | |
25 </head> | |
26 <body> | |
27 <p>Check that shape-inside:content-box works correctly.</p> | |
28 <div class='shape content-box'>XXX XXX XXX</div> | |
29 <div class='shape rounded-content-box'>X XXX X</div> | |
30 </body> | |
31 </html> | |
OLD | NEW |