tennismiro
tennismiro

Reputation: 41

html css position sticky option is not working

So I'm new to html and trying to use position: sticky but it is not working. I don't know why? Please help.

Here is my code:

div.sticky {
      position: "sticky";
      top: 0;
      background-color: green;
      border: 2px solid #4CAF50;
}

Any help?

Upvotes: 1

Views: 57

Answers (1)

Seth
Seth

Reputation: 2370

Remove the quotes around sticky. That should do the trick!

Upvotes: 1

Related Questions