Answers for "adjust table columns width html"

5

html table column width

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

Browse Popular Code Answers by Language