HTML <strong>
요소는 중대하거나 긴급한 콘텐츠를 나타냅니다. 보통 브라우저는 굵은 글씨로 표시합니다.
콘텐츠 카테고리 | 플로우 콘텐츠, 구문 콘텐츠, 뚜렷한 콘텐츠. |
---|---|
가능한 콘텐츠 | 구문 콘텐츠. |
태그 생략 | {{no_tag_omission}} |
가능한 부모 요소 | 구문 콘텐츠 또는 플로우 콘텐츠를 허용하는 모든 요소. |
가능한 ARIA 역할 | 모두 |
DOM 인터페이스 | {{domxref("HTMLElement")}} |
이 요소는 전역 특성만 포함합니다.
The <strong>
element is for content that is of "strong importance," including things of great seriousness or urgency (such as warnings). This could be a sentence that is of great importance to the whole page, or you could merely try to point out that some words are of greater importance compared to nearby content.
Typically this element is rendered by default using a bold font weight. However, it should not be used simply to apply bold styling; use the CSS {{cssxref("font-weight")}} property for that purpose. Use the {{HTMLElement("b")}} element to draw attention to certain text without indicating a higher level of importance. Use the {{HTMLElement("em")}} element to mark text that has stress emphasis.
Another accepted use for <strong>
is to denote the labels of paragraphs which represent notes or warnings within the text of a page.
<b>
vs. <strong>
It is often confusing to new developers why there are so many ways to express the same thing on a rendered website. {{HTMLElement("b")}} and <strong>
are perhaps one of the most common sources of confusion, causing developers to ask "Should I use <b>
or <strong>
? Don't they both do the same thing?"
Not exactly. The <strong>
element is for content that is of greater importance, while the <b>
element is used to draw attention to text without indicating that it's more important.
It may help to realize that both are valid and semantic elements in HTML5 and that it's a coincidence that they both have the same default styling (boldface) in most browsers (although some older browsers actually underline <strong>
). Each element is meant to be used in certain types of scenarios, and if you want to bold text simply for decoration, you should instead actually use the CSS {{cssxref("font-weight")}} property.
The intended meaning or purpose of the enclosed text should be what determines which element you use. Communicating meaning is what semantics are all about.
<em>
vs. <strong>
Adding to the confusion is the fact that while HTML 4 defined <strong>
as simply indicating a stronger emphasis, HTML 5 defines <strong>
as representing "strong importance for its contents." This is an important distinction to make.
While <em>
is used to change the meaning of a sentence as spoken emphasis does ("I love carrots" vs. "I love carrots"), <strong>
is used to give portions of a sentence added importance (e.g., "Warning! This is very dangerous.") Both <strong>
and <em>
can be nested to increase the relative degree of importance or stress emphasis, respectively.
<p>Before proceeding, <strong>make sure you put on your safety goggles</strong>.</p>
{{EmbedLiveSample("기본_예제", 650, 80)}}
<p><strong>Important:</strong> Before proceeding, make sure you add plenty of butter.</p>
{{EmbedLiveSample("경고_표시", 650, 80)}}
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG', 'text-level-semantics.html#the-strong-element', '<strong>')}} | {{Spec2('HTML WHATWG')}} | |
{{SpecName('HTML5 W3C', 'textlevel-semantics.html#the-strong-element', '<strong>')}} | {{Spec2('HTML5 W3C')}} | |
{{SpecName('HTML4.01', 'struct/text.html#edef-STRONG', '<strong>')}} | {{Spec2('HTML4.01')}} |
{{Compat("html.elements.strong")}}