Css Background Image Fit

css background image fit
body {
background-image: url(images/background.svg);
background-size: cover; /* <------ */
background-repeat: no-repeat;
background-position: center center; /* optional, center the image */
}
background image size css
#example1 {
background: url(mountain.jpg);
background-repeat: no-repeat;
background-size: auto;
}

#example2 {
background: url(mountain.jpg);
background-repeat: no-repeat;
background-size: 300px 100px;
}

 

how to cover full image in css
body {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

 

Leave a Comment