当前位置: 首页 > 网络学院 > 网页制作基础教程 > CSS > CSS padding属性
The padding property is a shorthand property for setting all of the padding properties in one declaration.
padding 属性为用一句声明便可设置所有填充属性的速记法属性
Note: Negative values are not allowed.
注意:不可以使用负数值
Inherited: No
继承性:无
h1 {padding: 10px} h1 {padding: 10px 2%} h1 {padding: 10px 2% 15px} h1 {padding: 10px 2% 15px 20px} |
值 | 描述 |
---|---|
padding-top padding-right padding-bottom padding-left | Sets the padding. The values comes in % (defines padding in % of the width of the closest element) and length (defines a fixed padding) 设置填充。值可以为%以及固定的数值 |