position: sticky is said to work in firefox, but I don't see my sidebar.
My html looks like this:
<div class="wrap"> <div class="sticky">side </div> <div class="content">content <div> <div>
My css:
.content{ height: 2000px; overflow: hidden; } .sticky{ position: sticky; width: 200px; float: left; }
When I scroll down the sidebar, scroll through the contents. He does not stick. Does anyone know what the problem is?
source share