paddingLeft 属性设置或返回元素的左填充。
margin 属性和 padding 属性都在元素周围插入空间。但是,不同之处在于 margin 在边框周围插入空格,而 padding 在元素边框内插入空格。
Property | |||||
---|---|---|---|---|---|
paddingLeft | Yes | Yes | Yes | Yes | Yes |
返回 paddingLeft 属性:
object.style.paddingLeft
设置 paddingLeft 属性:
object.style.paddingLeft
= "%|
length|initial|inherit"
Value | Description |
---|---|
% | Defines the left padding in % of the width of the parent element |
length | Defines the left padding in length units |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
默认值: | 0 |
---|---|
返回值: | 一个字符串,表示元素的左填充 |
CSS版本 | CSS1 |
marginLeft 和 paddingLeft 的区别:
function changeMargin() {
document.getElementById("myDiv").style.marginLeft = "100px";
}
function changePadding() {
document.getElementById("myDiv2").style.paddingLeft = "100px";
}
亲自试一试 »
CSS教程:CSS 填充
CSS 参考:左填充属性
HTML DOM 参考:填充属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!