+ 4
How to give cover size to background
2 ответов
+ 2
.image{
height:300px;
width:100%;
}
.image img{
background-size:cover;
}
+ 7
Try something like this
#myBackground {
background: url(bussiness.jpg);
background-size: cover;
}