+ 1
Why doesn't it work?(css)
I found a cheat sheet but it's not working. What should I do? https://code.sololearn.com/Ws336CjCgqaK/?ref=app
2 odpowiedzi
+ 6
Don't write everything in your css file inside your body.
Don't write:
body {
.button {
...
}
...
}
Write instead:
body {
}
.button {
...
}
...
+ 1
Thanks