1. 背景颜色 (background-color):
div {
background-color: #f4f4f4; /* 使用十六进制颜色代码设置背景颜色 */
}
2. 背景图像 (background-image):
div {
background-image: url('example.jpg'); /* 设置背景图像的路径 */
background-repeat: no-repeat; /* 禁止图像重复平铺 */
background-size: cover; /* 图像尺寸适应容器,可能会被裁剪 */
}
3. 背景平铺 (background-repeat):
div {
background-repeat: repeat-x; /* 水平平铺 */
/* 其他值:repeat-y(垂直平铺)、no-repeat(不平铺) */
}
4. 背景定位 (background-position):
div {
background-position: center top; /* 指定背景图像在容器中的位置 */
/* 其他值:left、right、top、bottom、center等 */
}
5. 背景渐变 (background-image with linear-gradient):
div {
background-image: linear-gradient(to right, #ffcc00, #ff6633); /* 线性渐变背景 */
}
6. 多重背景图像 (background 属性):
div {
background:
url('bg1.jpg') center/cover no-repeat,
linear-gradient(to right, #ffcc00, #ff6633);
}
7. 固定背景 (background-attachment):
div {
background-attachment: fixed; /* 固定背景,不随滚动而移动 */
/* 其他值:scroll(默认,随滚动而移动) */
}
这些只是CSS背景属性的一些例子,你可以根据需要组合使用它们。请注意,不同的属性可以组合使用,以实现更复杂的效果。
转载请注明出处:http://www.zyzy.cn/article/detail/12521/CSS