| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 .container { | 3 .container { |
| 4 line-height: 100px; | 4 line-height: 100px; |
| 5 font: 100px/1 Ahem; | 5 font: 100px/1 Ahem; |
| 6 } | 6 } |
| 7 .long { | 7 .long { |
| 8 float: left; | 8 float: left; |
| 9 width: 100px; | 9 width: 100px; |
| 10 height: 20px; | 10 height: 20px; |
| 11 margin-bottom: 10px; | 11 margin-bottom: 10px; |
| 12 background-color: black; | 12 background-color: black; |
| 13 shape-outside: rectangle(0, 0, 50%, 100%); | 13 shape-outside: inset(0 50% 0 0); |
| 14 } | 14 } |
| 15 .short { | 15 .short { |
| 16 float: left; | 16 float: left; |
| 17 width: 50px; | 17 width: 50px; |
| 18 height: 20px; | 18 height: 20px; |
| 19 clear: left; | 19 clear: left; |
| 20 margin-bottom: 10px; | 20 margin-bottom: 10px; |
| 21 background-color: black; | 21 background-color: black; |
| 22 } | 22 } |
| 23 </style> | 23 </style> |
| 24 <body> | 24 <body> |
| 25 <div class="container"> | 25 <div class="container"> |
| 26 <div class="long"></div> | 26 <div class="long"></div> |
| 27 <div class="short"></div> | 27 <div class="short"></div> |
| 28 <div class="short"></div> | 28 <div class="short"></div> |
| 29 XXXX | 29 XXXX |
| 30 </div> | 30 </div> |
| 31 </body> | 31 </body> |
| 32 | 32 |
| OLD | NEW |