diff options
Diffstat (limited to 'files/zh-tw/web/html/element/q/index.html')
-rw-r--r-- | files/zh-tw/web/html/element/q/index.html | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/files/zh-tw/web/html/element/q/index.html b/files/zh-tw/web/html/element/q/index.html new file mode 100644 index 0000000000..b11fa1ac4c --- /dev/null +++ b/files/zh-tw/web/html/element/q/index.html @@ -0,0 +1,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> |