Answers for "css background repeat not working"

CSS
4

how to make image not repeat on background

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

CSS background gradient doesn't repeat

/*Apply the following:*/
html {
    height: 100%;
}
body {
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
Posted by: Guest on June-02-2021

Browse Popular Code Answers by Language