0
How to add background image of car to a website using bootstrap
2 Answers
+ 7
body{
background:URL("link://car.image.png");
}
+ 1
Using bootstrap you can't add background image as its a framework which doesn't give this facility,you need to do it with css
body{
background-image:url("urlpath or imagepath");
background-size:cover;
}