blob: 3c266875006759f21db2a5e84e0c1300ef82a57f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
---
title: <strong>
slug: Web/HTML/Element/strong
tags:
- HTML
- Web
- 元素
- 文本级语义
translation_of: Web/HTML/Element/strong
---
<h2 id="总结">总结</h2>
<p>Strong 元素 (<code><strong></code>)表示文本十分重要,一般用粗体显示。</p>
<h2 id="使用环境">使用环境</h2>
<table class="standard-table">
<tbody>
<tr>
<td>内容分类</td>
<td>流内容, 语法内容</td>
</tr>
<tr>
<td>允许的内容</td>
<td><a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="HTML/Content categories#Phrasing content">Phrasing content</a></td>
</tr>
<tr>
<td>标签省略</td>
<td>不允许,必须同时有起始和结束标签</td>
</tr>
<tr>
<td>允许的父级元素</td>
<td>任何接受<a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="https://developer.mozilla.org/en/HTML/Content_categories#Phrasing_content">phrasing content</a>的元素, 或者接受 <a href="/en-US/docs/HTML/Content_categories#Flow_content" title="https://developer.mozilla.org/en/HTML/Content_categories#Flow_content">flow content</a>的元素</td>
</tr>
<tr>
<td>规范文档</td>
<td><a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-strong-element" title="http://www.w3.org/TR/html5/text-level-semantics.html#the-strong-element">HTML5, section 4.6.3</a>; <a href="http://www.w3.org/TR/html401/struct/text.html#edef-STRONG" title="http://www.w3.org/TR/html401/struct/text.html#edef-STRONG">HTML 4.01, section 9.2.1</a></td>
</tr>
</tbody>
</table>
<h2 id="属性">属性</h2>
<p>只具有<a href="https://developer.mozilla.org/zh-CN/docs/Web/HTML/Global_attributes">全局属性</a>.</p>
<h2 id="DOM_接口">DOM 接口</h2>
<p><code>实现了<a href="/en-US/docs/DOM/element" title="DOM/element">HTMLElement</a></code> 接口。</p>
<div class="note">
<p>实现注意事项<strong>: </strong>一直到Gecko 1.9.2 (含), Firefox 对这个元素实现了 <a href="/en-US/docs/DOM/span" title="DOM/span"><code>HTMLSpanElement</code></a> 接口</p>
</div>
<h2 id="举例">举例</h2>
<pre class="brush: html"><p>When doing x it is <strong>imperative</strong> to do y before proceeding.</p>
</pre>
<h2 id="效果">效果</h2>
<pre>When doing x it is <strong>imperative</strong> to do y before proceeding.</pre>
<h3 id="Bold_vs._Strong">Bold vs. Strong</h3>
<p>新的开发者经常感到疑惑,为什么在一个渲染的网站上会有这么多方式来表达同样的东西。Bold和Strong可能就是这其中的一种。为什么使用<strong></strong>而不是<b></b>? 使用strong的话你不得不打更多的字母,却产生出和b同样的效果,对吧?</p>
<p>也许并不是; strong是一个逻辑状态,而bold是一个物理状态。逻辑状态分离内容和表现形式,使用逻辑状态允许你用各种不同的方式来表达。比如你想把文字渲染成红色,使用其它大小的字体、带有下划线或其他样式,而不是加粗的样式。必须要理解使用strong呈现出的表现形式不同于单纯的加粗。 因为bold是一个物理状态,他没有区分表现形式和内容。如果让bold做了加粗文本外的其它任何事情,都将会令人困惑而且也不符合逻辑。</p>
<p>同样应该注意<b></b> 还有其他用途,比如想单纯地吸引注意而不增加其重要性。</p>
<h3 id="Emphasis_vs._Strong">Emphasis vs. Strong</h3>
<p>在 HTML4 时, Strong 简单地表示一个更强的强调(emphasis),而在HTML5中,这个元素被描述为表征“内容强烈的重要性(strong importance for its contents) ”。这是一个重要的区别。Em标签(Emphasis)用于改变一个句子的意思(比如"我<em><em>喜欢</em></em>胡萝卜" 和"我喜欢<em><em>胡萝卜</em></em>",分别强调喜欢和胡萝卜), Strong用来对一个句子的部分增加重要性(比如 "<strong>警告!</strong> 这<strong>非常危险</strong>。") Strong和Emphasis都可以分别通过嵌套来增加相对重要性或强调重点。</p>
<h2 id="同样参见">同样参见</h2>
<ul>
<li><a href="/zh-CN/docs/Web/HTML/Element/b" title="HTML/Element/b">HTML bold element</a></li>
<li><a href="/zh-CN/docs/Web/HTML/Element/em" title="HTML/Element/em">HTML em element</a></li>
</ul>
<div>{{HTMLRef}}</div>
|