+ 1
HTML CSS help
Currently doing a intro page and testing out some things I learned along the way. I'm trying to figure out why the gradient doesn't start from the completely at bottom. It seems to start repeating the gradient at the end. I'm sure its simple and I'm just inexperienced but any help would be appreciated. https://code.sololearn.com/WK3RffCrAJzi#css
3 ответов
+ 2
Add
html,body {
height: 100%;
}
+ 3
good try, to start from bottom, the argument should be
to top
https://code.sololearn.com/WWvA23ZkwI3M/?ref=app
0
@Gordon
@Calviղ
Thanks.