久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      HTML5中的<aside>元素與<article>元素 實例詳解

      <aside>元素
      HTML<aside>元素表示一個頁面的一部分, 它的內(nèi)容跟這個頁面的其它內(nèi)容的關(guān)聯(lián)性不強,或者是沒有關(guān)聯(lián),單獨存在。<aside>元素通常顯示成側(cè)邊欄(sidebar)或一些插入補充內(nèi)容。通常用來在側(cè)邊欄顯示一些定義,比如目錄、索引、術(shù)語表等;也可以用來顯示相關(guān)的廣告宣傳,作者的介紹,Web應(yīng)用,相關(guān)鏈接,當(dāng)前頁內(nèi)容簡介等。

      <aside>元素使用注意事項:

      不要使用<aside>元素標(biāo)記括號中的文字,因為這種類型的文本被認為是主內(nèi)容的一部分。

      使用例子:

      <article>            <p>              The Disney movie <em>The Little Mermaid</em> was               first released to theatres in 1989.             </p>            <aside>              The movie earned $87 million during its initial release.             </aside>            <p>              More info about the movie...             </p>          </article>

      <article>元素
      Article元素(<article>)故名思議,可以表示論壇帖子、雜志或新聞文章、博客、用戶提交的評論、交互式組件,或者其他獨立的內(nèi)容項目。它的主要語義為表示自己是一個獨立的內(nèi)容結(jié)構(gòu)。每一個<article>元素內(nèi)部結(jié)構(gòu)都應(yīng)該是相似的,比如都應(yīng)該包含一個頭標(biāo)題(h1-h6元素)等。

      <article>元素用法:

      當(dāng)<article>元素嵌套使用時,則該元素代表與父元素有關(guān)的文章。例如,代表博客評論的<article>元素可嵌套在代表博客文章的<article>元素中。
      <article>元素中文章作者的信息可通過<address>元素表示,但是不適用于嵌套的<article>元素。

      <article>元素中文章的發(fā)布日期和時間可通過<time>元素的pubdate屬性表示。

      代碼樣例

      <article class="film_review">            <header>              <h2>侏羅紀公園</h2>            </header>            <section class="main_review">              <p>Dinos were great!</p>            </section>            <section class="user_reviews">              <article class="user_review">                <p>Way too scary for me.</p>                <footer>                  <p>                    Posted on <time datetime="2015-05-16 19:00">May 16</time> by Lisa.                   </p>                </footer>              </article>              <article class="user_review">                <p>I agree, dinos are my favorite.</p>                <footer>                  <p>                    Posted on <time datetime="2015-05-17 19:00">May 17</time> by Tom.                   </p>                </footer>              </article>            </section>            <footer>              <p>                Posted on <time datetime="2015-05-15 19:00">May 15</time> by Staff.               </p>            </footer>          </article>

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號