OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .container { | 3 .container { |
4 font: 10px/1 Ahem; | 4 font: 10px/1 Ahem; |
5 color: green; | 5 color: green; |
6 } | 6 } |
7 .left { | 7 .left { |
8 float: left; | 8 float: left; |
9 height: 10px; | 9 height: 10px; |
10 width: 50px; | 10 width: 50px; |
11 background-color: red; | 11 background-color: red; |
12 shape-outside: rectangle(0, 0, 0, 100%); | 12 shape-outside: inset(0 100% 0 0); |
13 } | 13 } |
14 </style> | 14 </style> |
15 <body> | 15 <body> |
16 You should see a green rectangle. You shouldn't see any red. | 16 You should see a green rectangle. You shouldn't see any red. |
17 <div class="container"> | 17 <div class="container"> |
18 <div class="left"></div> | 18 <div class="left"></div> |
19 XXXXX | 19 XXXXX |
20 </div> | 20 </div> |
21 </body> | 21 </body> |
OLD | NEW |