OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
| 5 body { overflow: hidden; } |
5 p { | 6 p { |
6 color: rgba(255,0,0,.4); | 7 color: rgba(255,0,0,.4); |
7 margin: 5px; | 8 margin: 5px; |
8 white-space: nowrap; | 9 white-space: nowrap; |
9 } | 10 } |
10 </style> | 11 </style> |
11 </head> | 12 </head> |
12 <body> | 13 <body> |
13 <div id="underline20"> | 14 <div id="underline20"> |
14 <p style="font: bold 20px Georgia;text-decoration: underline;"> | 15 <p style="font: bold 20px Georgia;text-decoration: underline;"> |
(...skipping 12 matching lines...) Expand all Loading... |
27 Check if the line-through is thick enough for 40px | 28 Check if the line-through is thick enough for 40px |
28 </p> | 29 </p> |
29 <p id="overline20"style="font: bold 20px Georgia;text-decoration: overline;"> | 30 <p id="overline20"style="font: bold 20px Georgia;text-decoration: overline;"> |
30 Check if the overline is thick enough for 20px | 31 Check if the overline is thick enough for 20px |
31 </p> | 32 </p> |
32 <p id="overline40" style="font: bold 40px Georgia;text-decoration: overline"> | 33 <p id="overline40" style="font: bold 40px Georgia;text-decoration: overline"> |
33 Check if the overline is thick enough for 40px | 34 Check if the overline is thick enough for 40px |
34 </p> | 35 </p> |
35 </body> | 36 </body> |
36 </html> | 37 </html> |
OLD | NEW |