set image in css code example

Example 1: css background image

background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;

Example 2: background image css

.selector {
  background-image: url(image.png);
}

Example 3: how to add an image in css

.element {
  background-image: url("imageFile.png");
}

Example 4: add image to css

background-image: url(path);
background-repeat: no-repeat;
width: 10px;
height: 20px;

Example 5: css background image

background-image: url("image.gif");

Example 6: css add image

background-image: url("imageFile.png");

Tags:

Html Example