diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:43:23 -0500 |
commit | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch) | |
tree | a9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/web/html/element/div | |
parent | 074785cea106179cb3305637055ab0a009ca74f2 (diff) | |
download | translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2 translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip |
initial commit
Diffstat (limited to 'files/zh-tw/web/html/element/div')
-rw-r--r-- | files/zh-tw/web/html/element/div/index.html | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/files/zh-tw/web/html/element/div/index.html b/files/zh-tw/web/html/element/div/index.html new file mode 100644 index 0000000000..87763ae146 --- /dev/null +++ b/files/zh-tw/web/html/element/div/index.html @@ -0,0 +1,95 @@ +--- +title: <div> +slug: Web/HTML/Element/div +translation_of: Web/HTML/Element/div +--- +<p>{{HTMLRef}}</p> + +<p><strong>HTML <code><div></code> 元素</strong>(或是<em> HTML 文件區塊元素</em>)是本質上不特別代表任何東西的通用内容流容器。它可以成為樣式化用途(使用 <strong>class</strong> 或 <strong>id</strong> 屬性)、或是共享如 <strong>lang</strong> 同一個屬性的元素集合。它應該在沒有其他適合的語義元素(例如{{HTMLElement("article")}} 或 {{HTMLElement("nav")}} )可用時才用。</p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row"><a href="/zh-TW/docs/Web/HTML/Content_categories" title="HTML/Content_categories">內容類型</a></th> + <td><a href="/zh-TW/docs/Web/HTML/Content_categories#Flow_content">流內容</a>、捫及內容。</td> + </tr> + <tr> + <th scope="row">允許內容</th> + <td><a href="/zh-TW/docs/Web/HTML/Content_categories#Flow_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/Web/HTML/Content_categories#Flow_content">內容流</a>的元素。</td> + </tr> + <tr> + <th scope="row">DOM 介面</th> + <td>{{domxref("HTMLDivElement")}}</td> + </tr> + </tbody> +</table> + +<h2 id="Attributes" name="Attributes">屬性</h2> + +<p>這個元素包含<a href="/zh-TW/docs/Web/HTML/Global_attributes">全域屬性</a>。</p> + +<p><strong>align</strong> 元素已過時,不要使用它。</p> + +<h2 id="Examples" name="Examples">範例</h2> + +<pre class="brush: html"><div> + <p>這裡可以是任何內容,例如 &lt;p&gt;、&lt;table&gt;。你說了算!</p> +</div> +</pre> + +<h3 id="Result" name="Result">結果</h3> + +<p>這裡可以是任何內容,例如 <p>、<table>。你說了算!</p> + +<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', 'grouping-content.html#the-div-element', '<div>')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>最新的快照以後並無改變</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', 'grouping-content.html#the-div-element', '<div>')}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>廢棄 <strong>align</strong></td> + </tr> + <tr> + <td>{{SpecName('HTML4.01', 'struct/global.html#h-7.5.4', '<div>')}}</td> + <td>{{Spec2('HTML4.01')}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">瀏覽器相容性</h2> + +<div class="hidden">此表格是從資料庫中自動生成的,如果您想對這份表格做出貢獻,請詳閱<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</div> + + +<div>{{Compat("html.elements.div")}}</div> + + + +<h2 id="See_also" name="See_also">詳閱</h2> + +<ul> + <li>語義化的切片元素:{{HTMLElement("section")}}, {{HTMLElement("article")}}, {{HTMLElement("nav")}}, {{HTMLElement("header")}}, {{HTMLElement("footer")}}</li> + <li>針對段落式內容樣式化的 {{HTMLElement("span")}} 元素</li> +</ul> |