Answers for "css img source url"

CSS
-1

how to add image with url in css

background-image: url('images/my-image.png');
Posted by: Guest on June-20-2020
0

css img src

#divID {
    background-image: url("http://imageurlhere.com");
    background-repeat: no-repeat;
    width: auto; /*or your image's width*/
    height: auto; /*or your image's height*/
    margin: 0;
    padding: 0;
}
Posted by: Guest on January-04-2022

Browse Popular Code Answers by Language