Horje

How to set the width of a table cell (with CSS)

Add a width i percent for tds

index.html
Example: HTML
 <table style="width:100%">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td style="width:70%">January</td>
    <td style="width:30%">$100</td>
  </tr>
</table> 

Output should be:

How to set the width of a table cell (with CSS)




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin