HTML <u> 标签
下面有更多“自己尝试”的示例。
定义和用法
这 <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>
元素具有以下默认值: