-1:000000000000 | 0:3ab658a14ddd |
---|---|
1 <!DOCTYPE html> | |
2 <html lang="en-US"> | |
3 <head> | |
4 <title>text-decoration alignment</title> | |
5 <meta charset=UTF-8> | |
6 <style> | |
7 | |
8 p, span { text-decoration: underline } | |
9 span { vertical-align: 8px } | |
10 p > span { color: fuchsia } | |
11 p > span > span { color: aqua } | |
12 | |
13 em { font-style: normal; font-size: 5em } | |
14 | |
15 </style> | |
16 </head> | |
17 <body> | |
18 | |
19 <p>x<span>x<span>x</span></span></p> | |
20 | |
21 </body> | |
22 </html> |