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