Answers for "give div a background image"

CSS
2

div background image

#avatar {
    /* This image is 687 wide by 1024 tall, similar to your aspect ratio */
    background-image: url('http://i.stack.imgur.com/Dj7eP.jpg');
    
    /* make a square container */
    width: 150px;
    height: 150px;

    /* fill the container, preserving aspect ratio, and cropping to fit */
    background-size: cover;

    /* center the image vertically and horizontally */
    background-position: top center;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 50%;
}
Posted by: Guest on February-17-2021
13

how to set div background image

body {
 background-image: url("paper.gif");
 background-color: #cccccc;
}
Posted by: Guest on November-07-2019
4

make image background of div

background-image: url("photographer.jpg");
Posted by: Guest on April-03-2020
17

background image css

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

add background image in css

.w {
background-image: url("images/tom1.png");
}

.a {
background-image: url("images/tom2.png");
}

.s {
background-image: url("images/tom3.png");
}
Posted by: Guest on August-20-2020
0

adding background image to a div css

css background image
Posted by: Guest on October-20-2021

Code answers related to "give div a background image"

Browse Popular Code Answers by Language