[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ko/docs/Web/HTML/Reference/Elements/u [Back]  [Original]

<u> - HTML: Hypertext Markup Language | MDN

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

<u>

Baseline Widely available

This feature is well established and works across many devices and browser versions. Its been available across browsers since 2015 7.

HTML <u> . CSS .

: <u> HTML (Underline) . CSS text-decoration underline .

In this article

<p>
  You could use this element to highlight <u>speling</u> mistakes, so the writer
  can <u>corect</u> them.
</p>
p {
  margin: 0;
}

u {
  text-decoration: #f00 wavy underline;
}
, , .
.
, .
.
ARIA
DOM HTMLElement

.

, HTML (<u>) HTML 4 , HTML 5 . HTML 5 <u> .

: <u> , <u> .

<u> , .

<u> , .

<u> .

<u> , <ruby> .

CSS text-decoration underline .

<u> CSS , .

HTML

html
<p>  <u class="spelling"></u>.</p>

spelling <u> "" .

CSS

css
u.spelling {
  text-decoration: red wavy underline;
}

CSS spelling <u> . . red dashed underline.

.

<u>

, <u> . .

<span> , text-decoration underline .

HTML
html
<span class="underline">Today's Special</span>
<br />
Chicken Noodle Soup With Carrots
CSS
css
.underline {
  text-decoration: underline;
}
Result

<u> <cite> .

HTML
html
<p>The class read <cite>Moby Dick</cite> in the first term.</p>

<cite> . CSS .

css
cite {
  font-style: normal;
  text-decoration: underline;
}

Specification
HTML
# the-u-element


Web Proxy Viewer  |  New URL  |  Original Page