I have a div where I set the background-image url()
my problem is that I want to achieve something like this background-image url('example') cover center
At the moment, my code looks like this
div {
background-image: url(example);
background-size: cover;
background-position: center;
}
As I mentioned earlier I want to achieve something like this
div {
background-image: url(example) cover center;
}