position: fixed; top: 0;
margin-top
overflow: auto;
Hi Gonçalo,
There's an easier way: vou create the header container and the content container in this order (so the header is on the top). In the content container, you put the following CSS:
.ScrollableContainer { max-height: 250px; overflow-y: scroll; }
This way, the only thing that scrolls is the content, and the header stays on the top. Hope this can help!
Cheers,
Rafaela