背景图在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%
}
遇到什么问题了呢 。background-size就是调整背景大小
你div设置成和图片一样的尺寸,能出来你想要的效果吗?