HTML5中的section標籤是什嗎?HTML5中的section標籤怎麼置中?本篇文章就詳細地為大家舉出了執行個體,方便大家的觀看,其中的HTML5中section的定義和作用,都有執行個體在裡面。(後面還有
元素有話說)
HTML5—新語義元素header、nav、section、article、aside、footer等
在HTML5中相對於以往版本的文檔書寫方面,追加了一些標籤。如頁首、頁尾、內容區等等的元素結構。其中在主體結構元素中增加了article及section元素。那麼他們兩個有什麼區別呢,什麼時候用article,什麼是用section
什麼是article:HTML5中的article標籤是什嗎?HTML5中的article元素用在什麼地方?
今天就讓我們來講講新語義元素中的<section>元素的定義:
<section>:它定義文檔中的節(section、區段)。比如章節、頁首、頁尾或文檔中的其他部分,section通常 包含了一組內容及其標題。
HTML5中section元素的作用:
section元素是對頁面上的內容分塊處理,例如對文章分段等,相鄰的section元素的內容,應當是相關的,而不是像article那樣獨立。例如一篇文章:
<article> <header><h1>電腦各類語言介紹</h1></header> <p>本文列舉了部分電腦語言的一些介紹</p> <section> <h2>JavaScript</h2> <p>js是一門……</p> </section> <section> <h2>HTML</h2> <p>HTML是一門……</p> </section> <footer>著作權歸微也所有</footer> </article>
HTML5中的section標籤怎麼置中:
我是覺得使用css樣式,text-align:center,這個來置中,來看看執行個體:
<!DOCTYPE HTML><html> <meta charset="UTF-8" /> <head> <title>topic.alibabacloud.com</title> </head> <script src="http://lwww.php.cn/jquery/2.0.0/jquery.min.js"></script> <script type="text/javascript"> </script> <style type="text/css"> html, body { margin: 0; padding: 0; } .demo {} </style> <body> <div class="demo"> <section style="text-align: center;"> <h1>title</h1> <p>2017-07-11</p> </section> </div> </body> </html>
儘管section元素在技術上是可以設計樣式的,但是當有複雜的樣式或指令碼時,我們仍建議使用div元素。
類似於<li>元素,section元素是用來列舉內容的。
因此在現執行個體子中,使用<section>元素的原因是結構化的列出部落格的內容,代碼如下:
<div class="blog"> <section class="post"> <h2 class="post-title">Blog Post Title</h2> <p class="post-excerpt">Ice cream tart powder jelly-o. Gummies chocolate cake ice cream cookie halvah tiramisu jelly-o.</p> </section> <section class="post"> <h2 class="post-title">Blog Post Title</h2> <p class="post-excerpt">Ice cream tart powder jelly-o. Gummies chocolate cake ice cream cookie halvah tiramisu jelly-o.</p> </section> <section class="post"> <h2 class="post-title">Blog Post Title</h2> <p class="post-excerpt">Ice cream tart powder jelly-o. Gummies chocolate cake ice cream cookie halvah tiramisu jelly-o.</p> </section> </div>
這隻是個例子,<section>元素也可以用作其他用途。
【元素有話說】
section:
hello,ladies and gentlemen,我是section。我參加的國際會議,是這麼介紹我的,“The section element represents a generic section of a document or application. A section , in this context, is a thematic grouping of content, typically with a heading.” 我是帶有語義的div,“Examples of sections would be chapters, the various tabbed pages in a tabbed dialog box, or the numbered sections of a thesis. A Web site’s home page could be split into sections for an introduction, news items, and contact information.”我出席的情境一般是有文章的章節、標籤對話方塊中的標籤頁、或者論文中有編號的部分。一個網站的首頁可以分成簡介、新聞和聯絡資訊等幾部分。我不僅僅是一個普通的容器標籤。當一個標籤只是為了樣式化或者方便指令碼使用時,應該去找我的朋友 div 。一般來說,當元素內容明確地出現在文檔大綱中時,我是很好的人選。通常會帶有標題,<section><h1></h1><p></p></section>。我會用於對網站或者應用程式中頁面上的內容進行分塊。
【相關推薦】
HTML IMG標籤的屬性是有哪些?瞭解IMG標籤的用法
HTML5中web是什嗎?web儲存中的元素有哪些?