<!doctype html><style>
* {
border: 1px solid black;
}
html {
background: white;
}
.table {
display: table;
background: pink;
width: 300px;
height: 200px;
}
.top {
display: table-header-group;
background: orange;
height: 50px;
}
.bottom {
display: table-footer-group;
background: magenta;
height: 50px;
}
</style><body class=table><div class=bottom>bottom</div><div class=top>top</div>