dialog layout

header/content/footer scroll handling

by larsolesimonsen

HTML

<div class='outer'>
    <div class='dialog_header'></div>
    <div class='dialog_content'>
        <div class='content'></div>
    </div>
    <div class='dialog_footer'></div>
</div>

CSS

.outer {
    height: 200px;
    width: 400px;
    background-color: pink;
    position: relative;
}

.content {
    height: 190px;
    background-color: red;
}

.dialog_content {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 50px;
    background-color: blue;
    overflow: auto;
}

.dialog_footer {
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    background-color: green;
}