css里 background
时间: 2023-11-12 14:58:25 浏览: 76
CSS 背景
background 是 CSS 中用于设置元素背景的属性,可以设置背景颜色、图片、位置等。具体用法如下:
1. 设置背景颜色
background-color: #fff;
2. 设置背景图片
background-image: url("example.jpg");
3. 设置背景位置
background-position: center;
4. 设置背景重复方式
background-repeat: no-repeat;
5. 设置背景大小
background-size: cover;
6. 设置背景透明度
background-opacity: 0.5;
7. 设置多个背景
background: url("example1.jpg") center no-repeat, url("example2.jpg") center no-repeat;
阅读全文