OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 #container { | |
6 position: relative; | |
7 font: 20px Ahem, sans-serif; | |
8 -webkit-font-smoothing: none; | |
9 line-height: 20px; | |
10 width: 200px; | |
11 height: 200px; | |
12 border: 2px solid blue; | |
13 } | |
14 #shape-inside { | |
15 margin-top: -2px; | |
16 padding-top: 1px; | |
17 margin-left: 49px; | |
18 width: 100px; | |
19 height: 49px; | |
20 border: 1px solid green; | |
21 } | |
22 </style> | |
23 </head> | |
24 <body> | |
25 <div id="container"> | |
26 <div id="shape-inside">X X X X X X</div> | |
27 <div>X X X X X X</div> | |
28 </div> | |
29 <p>Requires Ahem font. The content should wrap inside the green rectangle, a nd the overflow should wrap inside the blue rectangle.</p> | |
30 | |
31 </body> | |
32 </html> | |
OLD | NEW |