Horje

How to align content inside <tr> (with CSS) on HTML <tr> Tag

Right-align content in second table row.

index.html
Example: HTML
 <table style="width:100%">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr style="text-align:right">
    <td>January</td>
    <td>$100</td>
  </tr>
</table> 

Output should be:

How to align content inside <tr> (with CSS) on HTML <tr> Tag




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