當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > table水平對齊屬性align

table水平對齊屬性align

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

移動端

【實例介紹】

table水平對齊屬性align

單元格的對齊方式設(shè)置與行的對齊方式設(shè)置方法相似。

【基本語法】

<td align="水平對齊方式">

【語法介紹】

在該語法中,水平對齊方式的取值可以是left、center或right。

【實例代碼】

<html xmlns="http://www.w3.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="100%" height="154" border="1" cellpadding="5" cellspacing="1">   <tr> <td width="53%"align="left">1、冰電波拉皮單次價格800元</td>     <td width="47%"align="left">每人限購1個療程</td>   </tr>   <tr> <td align="right">2、華爾茲冰點脫毛小腿體驗價格500元</td>     <td>小腿療程價格6折優(yōu)惠,其他部位8折優(yōu)惠</td>   </tr>   <tr>     <td align="center">3、美白牙</td> <td align="right">5折優(yōu)惠</td>   </tr> </table> </body> </html>

【代碼分析】

在代碼中,加粗部分的代碼標(biāo)記用于設(shè)置水平對齊的不同方式,在瀏覽器中預(yù)覽,效果如圖所示。

水平對齊屬性align運行效果

 【素材及源碼下載】

請點擊:水平對齊屬性align 下載本實例相關(guān)素材及源碼

 

標(biāo)簽: table  水平對齊  屬性