I'm trying to make a header sticky while scrolling:
.header { position: sticky; top: 0; background: #fff;}.container { display: flex;}But the element doesn't stick. I read that sticky should work with flexbox. What is preventing it from working here?
Do I need to adjust the container height?