最适合网络开发者的网站
HTML5。英语版 W3Schools。完整标签指南

尿素

HTML <u> 标签


例子

Mark up a misspelled word with the <u> tag:

<p>This is some <u>mispeled</u> text.</p>
亲自尝试 »

下面有更多“自己尝试”的示例。


定义和用法

<u> tag represents some text that is unarticulated and styled differently from a normal text, such as misspelled words or proper names in Chinese text. The content inside is typically displayed with an underline. You can change this with CSS (see example below).

提示: Avoid using the <u> element where it could be confused for a hyperlink!


浏览器支持

元素
<u> 是的 是的 是的 是的 是的

全局属性

<u> 标签还支持HTML 中的全局属性.


事件属性

<u> 标签还支持HTML 中的事件属性.


更多示例

例子

Use CSS to style misspelled text:

<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>
亲自尝试 »

Related Pages

HTML tutorial: HTML Text Formatting

HTML DOM reference: Underline Object


默认 CSS 设置

大多数浏览器会显示 <u> 元素具有以下默认值:

例子

u {
  text-decoration: underline;
}
亲自尝试 »