本文概述
HTML <u>标记用于定义非文本注释的嵌入式文本范围。它呈现为带下划线的纯文本, 但可以使用CSS属性进行更改。此标记在HTML 4.0中已弃用, 并在HTML5中重新定义。
在HTML5中, <u>标记用于表示在样式上与普通文本不同的文本。
提示:应该忽略<u>标记的使用, 因为它可能会使超链接的文本产生混淆。
句法
以下是有关HTML <u>标记的一些规范
Display | Inline |
开始日期/结束日期 | 开始和结束标签 |
Usage | Formatting |
例
<!DOCTYPE html>
<html>
<head>
<title>HTML u tag</title>
<style>
u {
text-decoration: red wavy underline;}
</style>
</head>
<body>
<h2>Example of u tag</h2>
<p>This tag can be useful to identifying <u>spelling mistakes </u>in an document.</p>
</body>
</html>
立即测试
输出:
属性
特定于标签的属性:
<u>标记不包含任何特定属性。
全局属性:
<u>标记支持HTML中的Global属性。
事件属性:
<u>标记支持HTML中的Event属性。
支持的浏览器
Element | Chrome | IE | Firefox | Opera | Safari |
<u> | Yes | Yes | Yes | Yes | Yes |
评论前必须登录!
注册