用 <u> 标签标签拼写错误的单词:
<p>This is some <u>mispeled</u> text.</p>
<u>
标签表示一些不清晰且样式与普通文本不同的文本,例如拼写错误的单词或中文文本中的专有名称。 里面的内容通常用下划线显示。 您可以使用 CSS 更改它(参见下面的示例)。
提示: 避免使用 <u>
元素,因为它可能与超链接混淆!
Element | |||||
---|---|---|---|---|---|
<u> | Yes | Yes | Yes | Yes | Yes |
<u>
标签支持 HTML 中的全局属性。
<u>
标签支持 HTML 中的事件属性。
使用 CSS 为拼写错误的文本设置样式:
<html> <head> <style> .spelling-error { text-decoration-line: underline; text-decoration-style: wavy; text-decoration-color: red; } </style> </head> <body> <p>This is some <u class="spelling-error">mispeled</u> text.</p> </body> </html>
HTML 教程: HTML Text Formatting
大多数浏览器将显示具有以下默认值的 <u>
元素:
u {
text-decoration: underline;
}