CSS样式表中的background简写
时间: 2024-04-15 20:09:29 浏览: 92
简述CSS中的背景属性background
CSS中的background属性有很多值可以设置,其中包括background-color、background-image、background-repeat、background-position、background-size等,如果想要同时设置多个值,可以使用background的简写属性来实现,格式如下:
```
background: [background-color] [background-image] [background-repeat] [background-position] / [background-size];
```
其中,方括号中的内容都是可选的,可以根据需要选择设置,例如:
```
background: #f00 url(bg.png) no-repeat center center / cover;
```
这个样式将会设置背景颜色为红色,使用bg.png作为背景图片,不重复,居中对齐,同时将图片缩放以覆盖整个背景。
阅读全文