背景图在div中显示不完全可以使用:background-size进行调整。
例如,以下都可以:
.test{
width: 100%;
height: 500px;
background-image: url("3.jpg");
background-size: 100% 100%;
}
```或者:
```html
.test{
width: 100%;
height: 500px;
background-image: url("3.jpg");
background-size: 100% ;
}
```又或者:
```html
.test{
width: 100%;
height: 500px;
background-image: url("3.jpg");
background-size: 500px 100%
}