Answers for "html table full height"

2

html table cell full width

<tr>
  <td colspan="5">This text should be as long as the entire table's width...</td>
</tr>
Posted by: Guest on May-20-2021
0

fix table height html

<div id="mainHolder" style="overflow: auto; max-height: 400px;">
    <table>
    ... Lots of data ...
    </table>
</div>
Posted by: Guest on March-18-2021
2

html table full width

<table style="width: 100%;">...</table>
Posted by: Guest on September-05-2021

Browse Popular Code Answers by Language