blob: b11fa1ac4cbdf520c9dd0248a878f7f53e51a7ec (
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: <q>
slug: Web/HTML/Element/q
translation_of: Web/HTML/Element/q
---
<div>{{HTMLRef}}</div>
<p><em>HTML 引文元素</em> (<strong><q></strong>) 指示一段元素內的文字,屬於行內引文。這個元素適用於不須換行的短引文,針對長引文,請使用 {{HTMLElement("blockquote")}} 元素。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/zh-TW/docs/HTML/Content_categories">內容類別</a></th>
<td><a href="/zh-TW/docs/HTML/Content_categories#Flow_content">流內容</a>、<a href="/zh-TW/docs/HTML/Content_categories#Phrasing_content">段落式內容</a>、捫及內容。</td>
</tr>
<tr>
<th scope="row">允許內容</th>
<td><a href="/zh-TW/docs/HTML/Content_categories#Phrasing_content">段落式內容</a></td>
</tr>
<tr>
<th scope="row">標籤省略</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">允許父元素</th>
<td>任何允許<a href="/zh-TW/docs/HTML/Content_categories#Phrasing_content">段落式內容</a>的元素</td>
</tr>
<tr>
<th scope="row">DOM 介面</th>
<td>{{domxref("HTMLQuoteElement")}}</td>
</tr>
</tbody>
</table>
<p>{{NoteStart}}多數現代標準瀏覽器,如 Mozilla Firefox, Opera, Safari 會在 <code><q></code> 元素周圍添加引號;但有些瀏覽器(如 Internet Explorer)可能不會針對引用添加任何樣式,不過這些都可以透過樣式規則套用。{{NoteEnd}}</p>
<h2 id="屬性">屬性</h2>
<p>這個元素包含 <a href="/zh-TW/docs/HTML/Global_attributes">全域屬性</a>。</p>
<dl>
<dt>{{htmlattrdef("cite")}}</dt>
<dd>這個屬性值為可以指定引用文件、或信息來源的 URL。這個屬性預期導向信息說明的上下文、或是引文參照。</dd>
</dl>
<h2 id="Example" name="Example">範例</h2>
<h3 id="HTML_內容">HTML 內容</h3>
<pre class="brush: html"><p>每當阿尼掛掉的時候,屎蛋會說:
<q cite="https://zh.wikipedia.org/zh-tw/%E8%82%AF%E5%B0%BC%C2%B7%E9%BA%A6%E5%85%8B%E5%BA%B7%E7%B1%B3%E5%85%8B">
我的天啊!阿尼他被掛掉了!
</q>.
</p>
</pre>
<p>{{ EmbedLiveSample('Example') }}</p>
<h2 id="規範">規範</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', 'text-level-semantics.html#the-q-element', '<q>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'text-level-semantics.html#the-q-element', '<q>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'struct/text.html#h-9.2.2', '<q>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td>初始定義</td>
</tr>
</tbody>
</table>
<h2 id="瀏覽器相容性">瀏覽器相容性</h2>
<div>
<p>{{Compat("html.elements.q")}}</p>
</div>
<p> </p>
<h2 id="參閱">參閱</h2>
<ul>
<li>針對長引文的 {{HTMLElement("blockquote")}} 元素</li>
<li>針對引用來源的 {{HTMLElement("cite")}} 元素</li>
</ul>
|