Answers for "how to fix width of table in html"

5

html table td width

<tr>
    <td style="width:70%">January</td>
    <td style="width:30%">$100</td>
</tr>
Posted by: Guest on September-05-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

Code answers related to "how to fix width of table in html"

Browse Popular Code Answers by Language