兄弟連學Python(06)---- table合併儲存格colspan和rowspan

來源:互聯網
上載者:User

標籤:row   執行個體   head   標籤   gpo   html   post   一個   class   

colspan和rowspan這兩個屬性用於建立特殊的表格。colspan是“column span(跨列)”的縮寫。colspan屬性用在td標籤中,用來指定儲存格橫向跨越的列數:在瀏覽器中將顯示如下:儲存格1儲存格2儲存格3儲存格4該例通過把colspan設為“3”, 令所在儲存格橫跨了三列。如果我們將colspan設為“2”,則該儲存格將只跨越兩列,於是有必要在第一行插入另外一個儲存格,以確保兩行佔據相同的列數。該例在瀏覽器中將顯示如下:儲存格1儲存格2儲存格3儲存格4儲存格5rowspan的作用是指定儲存格縱向跨越的行數。瀏覽器中將顯示如下:
儲存格1儲存格2     儲存格3     儲存格4上例中的儲存格1,其rowspan被設為“3”,這表示該儲存格必須跨越三行(本身一行,加上另外兩行)。因此,儲存格1和儲存格2在同一行,而儲存格3和儲存格4形成獨立的兩行。綜合執行個體ss<html><head></head><table border= "1 " width= "200 " ><tr><td colspan="4" >ss</td></tr><tr><td width= "25% ">   </td> <td width= "25% ">   </td> <td width= "25% ">   </td> <td width= "25% ">   </td> </tr><tr><td width= "25% "rowspan="2">   </td><td width= "25% ">   </td> <td width= "25% ">   </td> <td width= "25% ">   </td> </tr><tr><td width= "25% ">   </td><td width= "25% " rowspan="3">   </td><td width= "25% ">   </td> </tr><tr><td width= "25% " colspan="2" >   </td><td width= "25% ">   </td></tr><tr><td width= "25% ">   </td> <td width= "25% ">   </td> <td width= "25% ">   </td></tr></table></html>

  

兄弟連學Python(06)---- table合併儲存格colspan和rowspan

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.