Answers for "css background image repeate"

CSS
3

How to make a backgroud image with no repeat in html

.background {
background-image: url('name.jpeg');
background-repeat: no-repeat;
background-size: 100%;
}
Posted by: Guest on July-14-2020
4

how to make image not repeat on background

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

background-repeat

body
{

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

  background-repeat: repeat-x;

}
Posted by: Guest on September-27-2021

Browse Popular Code Answers by Language