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

css padding-bottom底部屬性

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

移動(dòng)端

【實(shí)例介紹】

css padding-bottom底部屬性

padding-bottom屬性設(shè)置元素的下內(nèi)邊距(底部空白)。

【基本語(yǔ)法】

padding-bottom:length

【語(yǔ)法介紹】

該屬性設(shè)置元素下內(nèi)邊距的寬度。行內(nèi)非替換元素上設(shè)置的下內(nèi)邊距不會(huì)影響行高計(jì)算,因此,如果一個(gè)元素既有內(nèi)邊距又有背景,從視覺(jué)上看可能延伸到其他行,有可能還會(huì)與其他內(nèi)容重疊。不允許指定負(fù)內(nèi)邊距值。

【實(shí)例代碼】

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

【代碼分析】

在代碼中,加粗代碼是設(shè)置底部邊距,在瀏覽器中預(yù)覽,如圖所示。

底部屬性padding-bottom運(yùn)行效果
 【素材及源碼下載】

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

 

標(biāo)簽: css padding-bottom  底部  屬性