真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

HTML5中div和section以及article有什么區(qū)別

本篇內(nèi)容介紹了“HTML5中div和section以及article有什么區(qū)別”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

10余年的鄄城網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都全網(wǎng)營(yíng)銷推廣的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整鄄城建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)公司從事“鄄城網(wǎng)站設(shè)計(jì)”,“鄄城網(wǎng)站推廣”以來(lái),每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。

剛剛開(kāi)始接觸 HTML5 時(shí),對(duì)它的標(biāo)簽很不適應(yīng),甚至一度有點(diǎn)反感。尤其是對(duì) div、section、article 這幾個(gè)標(biāo)簽,實(shí)在弄不清楚應(yīng)該使用在什么場(chǎng)合下。
div

HTML Spec:

    The div element has no special meaning at all.

這個(gè)標(biāo)簽是我們見(jiàn)得最多、用得最多的一個(gè)標(biāo)簽。本身沒(méi)有任何語(yǔ)義,用作布局以及樣式化或腳本的鉤子(hook)。
section

HTML Spec: “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 的無(wú)語(yǔ)義相對(duì),簡(jiǎn)單地說(shuō) section 就是帶有語(yǔ)義的 div 了,但是千萬(wàn)不要覺(jué)得真得這么簡(jiǎn)單。section 表示一段專題性的內(nèi)容,一般會(huì)帶有標(biāo)題??吹竭@里,我們也許會(huì)想到,那么一篇博客文章,或者一條單獨(dú)的評(píng)論豈不是正好可以用 section 嗎?接著看:

    Authors are encouraged to use the article element instead of the section element when it would make sense to syndicate the contents of the elemen.

當(dāng)元素內(nèi)容聚合起來(lái)更加言之有物時(shí),應(yīng)該使用 article 來(lái)替換 section 。

那么,section 應(yīng)該什么時(shí)候用呢?再接著看:

    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.

section 應(yīng)用的典型場(chǎng)景有文章的章節(jié)、標(biāo)簽對(duì)話框中的標(biāo)簽頁(yè)、或者論文中有編號(hào)的部分。一個(gè)網(wǎng)站的主頁(yè)可以分成簡(jiǎn)介、新聞和聯(lián)系信息等幾部分。其實(shí)我對(duì)這里傳達(dá)信息很感興趣,因?yàn)楦杏X(jué) section 和下面要介紹的 artilce 更加適用于模塊化應(yīng)用,這個(gè)話題以后會(huì)出篇專門的文章來(lái)討論,這里暫時(shí)略過(guò)。

要注意,W3C 還警告說(shuō):

    The section element is not a generic container element. When an element is needed for styling purposes or as a convenience for scripting, authors are encouraged to use the div element instead. A general rule is that the section element is appropriate only if the element’s contents would be listed explicitly in the document’s outline.”

section 不僅僅是一個(gè)普通的容器標(biāo)簽。當(dāng)一個(gè)標(biāo)簽只是為了樣式化或者方便腳本使用時(shí),應(yīng)該使用 div 。一般來(lái)說(shuō),當(dāng)元素內(nèi)容明確地出現(xiàn)在文檔大綱中時(shí),section 就是適用的。

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1.      

  2.     

     

    Apples

     

    Tasty, delicious fruit!

     
      

  3.     

    The apple is the pomaceous fruit of the apple tree.

        

  4.     

        

  5.         

    Red Delicious

        

  6.         

    These bright red apples are the most common found in many supermarkets.

        

  7.         

  8.     

        

  9.         

    Granny Smith

      

  10.         

    These juicy, green apples make a great filling for apple pies.

        

  11.         

  12.     

article

HTML Spec:

    The article element represents a self-contained composition in a document, page, application, or site and that is, in principle, independently distributable or reusable, e.g. in syndication.

article 是一個(gè)特殊的 section 標(biāo)簽,它比 section 具有更明確的語(yǔ)義, 它代表一個(gè)獨(dú)立的、完整的相關(guān)內(nèi)容塊。一般來(lái)說(shuō), article 會(huì)有標(biāo)題部分(通常包含在 header 內(nèi)),有時(shí)也會(huì) 包含 footer 。雖然 section 也是帶有主題性的一塊內(nèi)容,但是無(wú)論從結(jié)構(gòu)上還是內(nèi)容上來(lái)說(shuō),article 本身就是獨(dú)立的、完整的。

HTML Spec 中接著又列舉了一些 article 適用的場(chǎng)景。

    This could be a forum post, a magazine or newspaper article, a blog entry, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.

當(dāng) article 內(nèi)嵌 article 時(shí),原則上來(lái)說(shuō),內(nèi)部的 article 的內(nèi)容是和外層的 article 內(nèi)容是相關(guān)的。例如,一篇博客文章中,包含用戶提交的評(píng)論的 article 就應(yīng)該潛逃在包含博客文章 article 之中。

問(wèn)題是怎么才算“完整的獨(dú)立內(nèi)容”?有個(gè)最簡(jiǎn)單的判斷方法是看這段內(nèi)容在 RSS feed 中是不是完整的??催@段內(nèi)容脫離了所在的語(yǔ)境,是否還是完整的、獨(dú)立的。

例子:

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1.      

  2.     

        

  3.         

    The Very First Rule of Life

        

  4.         

      

  5.         

  6.     

    If there's a microphone anywhere near you, assume it's hot and sending whatever you're saying to the world. Seriously.

        

  7.     

    ...

        

  8.     

      

  9.         Show comments...  

  10.         

  11.   

  12.   

  13.      

  14.     

        

  15.         

    The Very First Rule of Life

      

  16.         

        

  17.       

  18.     

    If there's a microphone anywhere near you, assume it's hot and sending whatever you're saying to the world. Seriously.

        

  19.     

    ...

        

  20.     

      

  21.         

    Comments

        

  22.         

      

  23.             

      

  24.                 

    Posted by: George Washington

      

  25.                 

        

  26.               

  27.             

    Yeah! Especially when talking about your lobbyist friends!

        

  28.             

  29.           

      

  30.             

        

  31.                 

    Posted by: George Hammond

      

  32.                 

      

  33.               

  34.             

    Hey, you have the same first name as me.

      

  35.             

  36.         

  37.     

總結(jié)

div section article ,語(yǔ)義是從無(wú)到有,逐漸增強(qiáng)的。div 無(wú)任何語(yǔ)義,僅僅用作樣式化或者腳本化的鉤子(hook),對(duì)于一段主題性的內(nèi)容,則就適用 section,而假如這段內(nèi)容可以脫離上下文,作為完整的獨(dú)立存在的一段內(nèi)容,則就適用 article。原則上來(lái)說(shuō),能使用 article 的時(shí)候,也是可以使用 section 的,但是實(shí)際上,假如使用 article 更合適,那么就不要使用 section 。nav 和 aside 的使用也是如此,這兩個(gè)標(biāo)簽也是特殊的 section,在使用 nav 和 aside 更合適的情況下,也不要使用 section 了。

對(duì)于 div 和 section、 article 以及其他標(biāo)簽的區(qū)分比較簡(jiǎn)單。對(duì)于 section 和 article 的區(qū)分乍看比較難,其實(shí)重點(diǎn)就是看看這段內(nèi)容脫離了整體是不是還能作為一個(gè)完整的、獨(dú)立的內(nèi)容而存在,這里面的重點(diǎn)又在完整身上。因?yàn)槠鋵?shí)說(shuō)起來(lái) section 包含的內(nèi)容也能算作獨(dú)立的一塊,但是它只能算是組成整體的一部分,article 才是一個(gè)完整的整體。

因?yàn)槠鋵?shí)有些時(shí)候每個(gè)人都有自己的看法,所以難免有難于決斷的時(shí)候,怎么辦?

在 HTML5 設(shè)計(jì)原理 中,有一條是專門用來(lái)解決類似情況的:

最終用戶優(yōu)先(Priority of Constituencies)

“In case of conflict, consider users over authors over implementors over specifiers over theoretical purity.” 一旦遇到?jīng)_突,最終用戶優(yōu)先,其次是作者,其次是實(shí)現(xiàn)者,其次標(biāo)準(zhǔn)制定者,最后才是理論上的完滿。

“HTML5中div和section以及article有什么區(qū)別”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


新聞標(biāo)題:HTML5中div和section以及article有什么區(qū)別
網(wǎng)頁(yè)鏈接:http://weahome.cn/article/jjohec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部