Horje

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

Vertical align content in table rows.

index.html
Example: HTML
 <table style="height:200px">
  <tr  style="vertical-align:top">
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr style="vertical-align:bottom">
    <td>January</td>
    <td>$100</td>
  </tr>
</table> 

Output should be:

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




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