The following is a screenshot of my site:
As you can see, the image does not occupy the entire background and generates a blank space, because I added the property CSS3
:
background-repeat: no-repeat;
I should add this property because when I adapted the page to mobile, I duplicated the background image and that is not the result I want.
The framework
I'm working with is bootstrap version 3.3.7
.
This is the code CSS
of the body:
body {
background-image: url("img/imgoriginales/seccionsementales.jpg");
background-repeat: no-repeat;
}
NEW EDITION OF THE QUESTION:
I add the code used based on a response from a user:
body {
background-image: url("img/imgoriginales/seccionsementales.jpg") ;
background-repeat: no-repeat;
background-size: cover;
}
It then generates another space below the web: