CSS常见属性

background 设置背景
{
background: url(“images/bg.jpeg”) no-repeat;
background-size: cover;
}
display 显示类型(none、block、inline、inline-block)
padding 内边距(四种方式)
margin 外边距(四种方式)
border 设置边框(border-width、border-style、border-color)
overflow设置超出边界内容的显示 ,scroll可以为滑动
line-height 垂直居中
cursor设置光标的类型(手指、十字架)
text-decoration 设置a标签的下划线 、删除线
text-align水平居中
list-style设置列表左边编号的类型,经常用none
box-sizing 以特定的方式定义匹配某个区域 的特定元素,默认为content-box, 将box-sizing设置为“border-box”,可以把边框和内边距放入框中

猜你喜欢

转载自blog.csdn.net/qq_33323291/article/details/52648003