Reputation: 9
I made this linear-gradient background animation in css for my to-do list, but as I add more items to the list the website is scrollable and the background repeats making it look ugly.
I made some research about it and I saw background-attachment: fixed;
, background-repeat: no-repeat;
or sum like that but I can't get it to work, can someone help?
This is what it looks like
Upvotes: 0
Views: 51
Reputation: 1
have you tried background-size: cover;
or background-size: auto;
?
Find more here mdn_web_docs
Upvotes: -1