Answers for "non repeating image css"

CSS
4

how to stop an image repeating in css

body {
  background-image: url("image.jpg");
  background-repeat: no-repeat;
}
Posted by: Guest on March-03-2020
4

how to make image not repeat on background

.image {
 background-repeat: no-repeat;
}
Posted by: Guest on April-26-2020

Code answers related to "non repeating image css"

Browse Popular Code Answers by Language