table height css code example
Example 1: fix table height html
<div id="mainHolder" style="overflow: auto; max-height: 400px;">
<table>
... Lots of data ...
</table>
</div>
Example 2: table css
tr , th , td {
border: 1px solid black;
padding: 5%;
text-align: center;
}