Answers for "css website background image"

CSS
2

background image css

.wrapper {
    background: url('./images/homeBg.png') no-repeat;
    background-size: 100vw; 
    float: left;
    height: 100vw;
    width: 100vw;
}
Posted by: Guest on March-19-2021
18

background image css

.selector {
  background-image: url(image.png);
}
Posted by: Guest on May-25-2020

Code answers related to "css website background image"

Browse Popular Code Answers by Language