I'm trying to make a layout like native desktop application for my needs but i'm not very familiar with css.
Here an example of layout I need: JSFiddle I'm trying to use overflow like this but not work:
.scrollable-container {
border: 1px solid #00f;
height: auto;
overflow: scroll;
}
What I'm trying to do: - make .content div fit space between .navigation (green) and .footer (yellow) div even if window is resized - make .scrollable-container scrollable if content size is larger - make table header fixed when scrolling
Thank you.