HTML5中的section標籤是什麼? HTML5中的section標籤怎麼居中?本篇文章就詳細地為大家舉出了實例,方便大家的觀看,其中的HTML5中section的定義和作用,都有實例在裡面。 (後面還有元素有話說)
HTML5—新語意元素header、nav、section、article、aside、footer等
在HTML5中相對於以往版本的文檔書寫方面,追加了一些標籤。如頁首、頁尾、內容區等等的元素結構。其中在主體結構元素中增加了article及section元素。那他們兩個有什麼差別呢,什麼時候用article,什麼是用section
什麼是article:HTML5中的article標籤是什麼? HTML5的article元素用在什麼地方?
今天就讓我們來講講新語意元素中的
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>PHP中文网</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元素。
類似
因此在現實例子中,使用
<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:
#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 formation, contuction, contacts, contection, facts), contacts, contuction, contactms, contection, intccation, contuction, contactms, cont. 」我出席的場景一般是有文章的章節、標籤對話框中的標籤頁、或論文中有編號的部分。一個網站的主頁可以分成簡介、新聞和聯絡資訊等幾個部分。我不僅僅是一個普通的容器標籤。當一個標籤只是為了樣式化或方便腳本使用時,應該去找我的朋友 div 。一般來說,當元素內容明確地出現在文件大綱中時,我就是很好的人選。通常會有標題,
【相關推薦】
以上是HTML5中的section標籤是什麼? HTML5中的section標籤怎麼居中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!