Mini ques -
KokyZ - 06.02.2017
hello all, how to increase html table height if its more than 100 with a list or something like this
please
Re: Mini ques -
BlackBank - 06.02.2017
Give your table a height (like for example 600px) and add the follow to your <table> tag:
PHP код:
<table style="height: 600px; overflow-y: auto;">
....
</table>
The CSS way:
PHP код:
table {
height: 600px;
overflow-y: auto;
}