SA-MP Forums Archive
Mini ques - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: Mini ques (/showthread.php?tid=628161)



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