當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > table合并行屬性rowspan

table合并行屬性rowspan

2012/11/20 17:27:55作者:佚名來源:網(wǎng)絡(luò)

移動端

【實例介紹】

table合并行屬性rowspan

單元格除了可以在水平方向上跨列,還可在垂直方向上跨行。

【基本語法】

<td rowspan="跨度的行數(shù)">

【語法介紹】

與水平跨度相對應(yīng),rowspan設(shè)置的是單元格在垂直方向上跨行的個數(shù)。

【實例代碼】

<html xmlns="http://wwww3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>合并列屬性</title> </head> <body><b> 五一大優(yōu)惠 </b> <table width="87%" height="154" border="1" cellpadding="5" cellspacing="2">   <tr> <td colspan="2" >1、冰電波拉皮單次價格800元  每人限購1個療程</td>   </tr>   <tr> <td width="53%" rowspan="2"  >2、華爾茲冰點脫毛小腿體驗價格500元</td>     <td width="47%" >小腿療程價格6折優(yōu)惠</td>   </tr>   <tr>     <td >其他部位8折優(yōu)惠</td>   </tr>   <tr>     <td >3、美白牙</td> <td  >5折優(yōu)惠</td>   </tr> </table> </body> </html>

【代碼分析】

在代碼中,加粗部分的代碼標(biāo)記用于設(shè)置垂直跨度,在瀏覽器中預(yù)覽,可以看到第2行第二列單元格跨了2行單元格,如圖所示。

合并行屬性rowspan運行效果

 【素材及源碼下載】

請點擊:table合并行屬性rowspan 下載本實例相關(guān)素材及源碼

 

標(biāo)簽: table  合并列  屬性