Answers for "fix table column width html"

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 set column width

<table style="width: 100%">
    <tbody>
        <tr>
            <td style="background-color: #777">15%</td>
            <td style="background-color: #aaa">70%</td>
            <td style="background-color: #777">15%</td>
        </tr>
    </tbody>
</table>
Posted by: Guest on July-18-2021

Code answers related to "fix table column width html"

Browse Popular Code Answers by Language