Mini ques
#1

hello all, how to increase html table height if its more than 100 with a list or something like this please
Reply
#2

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 {
   
height600px;
   
overflow-yauto;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)