I create a table, and I want it's height
be 800px
.
If it's overflow, I want to make Scroll Bar but the Titles does not scroll.
So I try to add this CSS:
overflow: scroll;
max-height:800px;
But it's not work for me. This is the entire html file. What is the problem?
CSS
table{
overflow: scroll;
text-align: center;
margin: auto;
max-height:800px;
}
table, td, th
{
border:1px solid green;
}
th
{
background-color:green;
color:white;
}
And HTML
<table >
<tr>
<th>field a</th>
<th>field b</th>
<th>field c</th>
<th>field e</th>
</tr>
<tr>
<td>3534534</td>
<td>עו"ש</td>
<td>6,463</td>
<td>4,000</td>
</tr>
<tr>
<td>3534534</td>
<td>עו"ש</td>
<td>6,463</td>
<td>4,000</td>
</tr>
</table>
Thanks!!!