html`<style>
table {
display:block;
width: 800px;
max-height: 12rem;
overflow-y: scroll;
outline: 1px #fafafa solid;
}
thead {
position: sticky;
top: 0;
z-index: 1;
background-color: #fff;
}
tbody {
}
th, td {
min-width: 80px;
border: 1px #aaa solid;
}
th:first-child, td:first-child {
background-color: #fafafa;
min-width: 40px;
}
</style>`