blob: 6b9f65971f800e81207e9e8b6a2a28caa49aac90 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
---
title: <blockquote>
slug: Web/HTML/Element/blockquote
translation_of: Web/HTML/Element/blockquote
---
<h2 id="摘要">摘要</h2>
<p><strong>HTML <code><blockquote></code> 元素</strong>(<em>HTML 區塊引言元素</em>)定義一段文字屬於引用。通常,這元素會透過縮排來呈現(要知道如何改變,請參考<a href="#Notes">備註</a>)。引言的 URL 來源可透過 <strong>cite</strong> 屬性賦予,而來源的文本形式可以使用 {{HTMLElement("cite")}} 元素。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/zh-TW/docs/HTML/Content_categories" title="HTML/Content_categories">內容類別</a></th>
<td><a href="/zh-TW/docs/HTML/Content_categories#Flow_content" title="HTML/Content categories#Flow content">流內容</a>、sectioning root、捫及內容。</td>
</tr>
<tr>
<th scope="row">允許內容</th>
<td><a href="/zh-TW/docs/HTML/Content_categories#Flow_content" title="HTML/Content_categories#Phrasing_content">內容流</a>.</td>
</tr>
<tr>
<th scope="row">Tag 省略</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">允許父元素</th>
<td>任何允許<a href="/zh-TW/docs/HTML/Content_categories#Flow_content" title="HTML/Content_categories#Phrasing_content">內容流</a>的元素</td>
</tr>
<tr>
<th scope="row">DOM 介面</th>
<td>{{domxref("HTMLQuoteElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="屬性">屬性</h2>
<p>這個屬性包含<a href="https://developer.mozilla.org/zh-TW/docs/HTML/Global_attributes" style="line-height: 21px;" title="HTML/Global attributes">全局屬性</a><span style="line-height: 21px;">。</span></p>
<dl>
<dt>{{htmlattrdef("cite")}}</dt>
<dd>一個指向被引用的原始文件或訊息的 URL 。這個屬性預期要指引到解釋內容的資訊,或是引言的援引。</dd>
</dl>
<h2 id="範例">範例</h2>
<pre class="brush: html"><blockquote cite="http://developer.mozilla.org">
<p>這是取自於 Mozilla Developer Center 的引言。</p>
</blockquote>
</pre>
<p>以上的 HTML 原始碼會輸出:</p>
<blockquote cite="http://developer.mozilla.org">
<p>這是取自於 Mozilla Developer Center 的引言。</p>
</blockquote>
<h2 id="Specifications" name="Specifications">規範</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">規範</th>
<th scope="col">狀態</th>
<th scope="col">註解</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'semantics.html#the-blockquote-element', '<blockquote>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'grouping-content.html#the-blockquote-element', '<blockquote>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'struct/text.html#h-9.2.2', '<blockquote>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="瀏覽器相容性">瀏覽器相容性</h2>
{{Compat("html.elements.blockquote")}}
<h2 id="備註">備註</h2>
<p>要改變<code><blockquote></code>的縮進,請使用 <a href="/zh-TW/docs/CSS" title="CSS">CSS</a> 的 {{cssxref("margin")}} 屬性。</p>
<p>針對短篇引文請使用 {{HTMLElement("q")}} 元素。</p>
<h2 id="延伸閱讀">延伸閱讀</h2>
<ul>
<li>{{HTMLElement("q")}} 元素:用以表示單行的引用內容。</li>
<li>{{HTMLElement("cite")}} 元素:用以表示引用來源。</li>
</ul>
<p>{{HTMLRef}}</p>
|