| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 /* The Ahem font's size is equal to a little less than the size of the large
st square that will | 5 /* The Ahem font's size is equal to a little less than the size of the large
st square that will |
| 6 fit within the ellipse. Solving the ellipse equation when x = y, produce
s the size of the | 6 fit within the ellipse. Solving the ellipse equation when x = y, produce
s the size of the |
| 7 square: 2 * rx * ry / sqrt(rx^2 + ry^2). For rx=200 and ry=100, that's 1
78.885. To eliminate | 7 square: 2 * rx * ry / sqrt(rx^2 + ry^2). For rx=200 and ry=100, that's 1
78.885. To eliminate |
| 8 the impact of subpixel layout on the square's size (but not it's origin),
we've reduced its | 8 the impact of subpixel layout on the square's size (but not it's origin),
we've reduced its |
| 9 size to 178. | 9 size to 178. |
| 10 */ | 10 */ |
| 11 #shape-inside { | 11 #shape-inside { |
| 12 position: relative; | 12 position: relative; |
| 13 width: 500px; | 13 width: 500px; |
| 14 height: 500px; | 14 height: 500px; |
| 15 shape-inside: ellipse(220px, 220px, 200px, 100px); | 15 shape-inside: ellipse(200px 100px at 220px 220px); |
| 16 font: 178px/1 Ahem, sans-serif; | 16 font: 178px/1 Ahem, sans-serif; |
| 17 color: green; | 17 color: green; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #shape-outline { | 20 #shape-outline { |
| 21 position: absolute; | 21 position: absolute; |
| 22 top: 0px; | 22 top: 0px; |
| 23 left: 0px; | 23 left: 0px; |
| 24 width: 500px; | 24 width: 500px; |
| 25 height: 500px; | 25 height: 500px; |
| 26 } | 26 } |
| 27 </style> | 27 </style> |
| 28 </head> | 28 </head> |
| 29 <body> | 29 <body> |
| 30 <div id="shape-inside"> | 30 <div id="shape-inside"> |
| 31 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> | 31 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> |
| 32 <ellipse cx="220" cy="220" rx="200" ry="100" stroke="blue" fill="no
ne"/> | 32 <ellipse cx="220" cy="220" rx="200" ry="100" stroke="blue" fill="no
ne"/> |
| 33 </svg> | 33 </svg> |
| 34 X | 34 X |
| 35 </div> | 35 </div> |
| 36 </body> | 36 </body> |
| 37 </html> | 37 </html> |
| OLD | NEW |