您好,登錄后才能下訂單哦!
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><h2>計算機各類語言介紹</h2></header> <p>本文列舉了部分計算機語言的一些介紹</p> <section> <h3>JavaScript</h3> <p>js是一門……</p> </section> <section> <h3>HTML</h3> <p>HTML是一門……</p> </section> <footer>版權歸微也所有</footer> </article>
HTML5中的section標簽怎么居中:
我是覺得使用css樣式,text-align:center,這個來居中,來看看實例:
<!DOCTYPE HTML> <html> <meta charset="UTF-8" /> <head> <title>億速云</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;"> <h2>title</h2> <p>2017-07-11</p> </section> </div> </body> </html>
盡管section元素在技術上是可以設計樣式的,但是當有復雜的樣式或腳本時,我們仍建議使用div元素。
類似于<li>元素,section元素是用來列舉內容的。
因此在現實例子中,使用<section>元素的原因是結構化的列出博客的內容,代碼如下:
<div class="blog"> <section class="post"> <h3 class="post-title">Blog Post Title</h3> <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"> <h3 class="post-title">Blog Post Title</h3> <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"> <h3 class="post-title">Blog Post Title</h3> <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><h2></h2><p></p></section>。我會用于對網站或者應用程序中頁面上的內容進行分塊。
感謝各位的閱讀!看完上述內容,你們對HTML5中section元素的作用是什么大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。