Answers for "background image declaration css"

CSS
1

how to add background image in css

.bg-img{
 background-image: url("../img/bookGlowing.jpg"); /*In case the picture is in another folder and you are in css folder*/
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
Posted by: Guest on June-05-2021
1

background css image

background-image: url('./image.jpg');
Posted by: Guest on October-05-2020

Browse Popular Code Answers by Language