Newer
Older
minerva / Tests / LibWeb / Layout / input / table / table-header-and-footer-groups.html
@minerva minerva on 13 Jul 432 bytes Initial commit
<!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>