display、margin、border、padding、background(背景)
height、min-height、max-height、width、min-width、max-width
overflow、position、left、right、top、bottom、z-index
float、clear
table-layout、vertical-align
page-break-after、page-bread-before
unicode-bidi
div {
/*背景属性:可以直接设置颜色,也可以设置图片*/
/*background: red;*/
background: url("img/a.png");
/*背景图片大小:自适应标签的大小*/
background-size: cover;
}
div {
background-color: red;
width: 100px;
height: 30px;
/* 溢出属性(内容超过显示的大小):auto 超出范围的部分自动滚动显示(类似于滚动视图);hidden 超出范围的部分隐藏 */
overflow: auto;
}
6. CSS3新增的属性1》RGBA透明度
div {
/* RGB透明度 */