运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div.a { text-decoration: underline; text-underline-position: auto; } div.b { text-decoration: underline; text-underline-position: under; } </style> </head> <body> <h1>The text-underline-position Property</h1> <div class="a">Text with underline and position auto: C<sub>6</sub>H<sub>12</sub>O<sub>16</sub> (glucose).</div> <br> <div class="b">Text with underline and position under: C<sub>6</sub>H<sub>12</sub>O<sub>16</sub> (glucose).</div> <br> </body> </html>