OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 #polygon-shape-inside { | |
6 position: absolute; | |
7 top: 50px; | |
8 left: 50px; | |
9 width: 200px; | |
10 height: 150px; | |
11 font: 50px/1 Ahem, sans-serif; | |
12 color: green; | |
13 } | |
14 | |
15 #informative-text { | |
16 position: absolute; | |
17 top: 150px; | |
18 left: 50px; | |
19 } | |
20 </style> | |
21 </head> | |
22 <body style="position:relative"> | |
23 <div id="polygon-shape-inside">X X<br>XXX</div> | |
24 <p id="informative-text"> | |
25 This test requires the Ahem font. It creates a self-intersecting rectiline ar polygonal | |
26 shape-inside with the evenodd fillRule. The content should just fill the | |
27 U shape with solid green rectangles.</p> | |
28 </body> | |
29 </html> | |
30 | |
OLD | NEW |