當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > css padding-left左側(cè)屬性

css padding-left左側(cè)屬性

2012/11/26 15:49:41作者:佚名來源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

css padding-left左側(cè)屬性

padding-left屬性設(shè)置元素左內(nèi)邊距(空白)。

【基本語法】

padding-left:length

【語法介紹】

該屬性設(shè)置元素左內(nèi)邊距的寬度。行內(nèi)非替換元素上設(shè)置的左內(nèi)邊距僅在元素所生成的第一個(gè)行內(nèi)框的左邊出現(xiàn)。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> <style type="text/css"> td {padding-left: 2cm} </style> </head> <body> <table border="1"> <tr> <td> 這個(gè)表格單元擁有左內(nèi)邊距。 </td> </tr> </table> </body> </html>

【代碼分析】

在代碼中,加粗部分的標(biāo)記是設(shè)置左內(nèi)邊距,在瀏覽器中預(yù)覽,如圖所示。

左側(cè)屬性padding-left運(yùn)行效果

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:左側(cè)屬性css padding-left 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: css padding-left  左側(cè)  屬性