Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <u> 标签


示例

使用 <u> 标签标记一个拼写错误的单词

<p>这是一些 <u>mispeled</u> 文本。</p>
自己试一试 »

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


定义和用法

<u> 标签表示一些未明确表达的文本,其样式与普通文本不同,例如拼写错误的单词或中文文本中的专有名词。标签内部的内容通常以带下划线的形式显示。您可以使用 CSS 更改此样式(请参阅下面的示例)。 

提示:避免在可能与超链接混淆的地方使用 <u> 元素!


浏览器支持

元素
<u>

全局属性

<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>这是一些 <u class="spelling-error">mispeled</u> 文本。</p>

</body>
</html>
自己试一试 »

相关页面

HTML 教程:HTML 文本格式

HTML DOM 参考:下划线对象


默认 CSS 设置

大多数浏览器会使用以下默认值显示 <u> 元素

示例

u {
  text-decoration: underline;
}
自己试一试 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.