Horje

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

Vertical-align content in thead.

index.html
Example: HTML
 <table style="width:50%;">
  <thead style="vertical-align:bottom">
    <tr style="height:100px">
      <th>Month</th>
      <th>Savings</th>
    </tr>
  </thead>
   <tbody>
    <tr>
      <td>January</td>
      <td>$100</td>
    </tr>
    <tr>
      <td>February</td>
      <td>$80</td>
    </tr>
  </tbody>
</table> 

Output should be:

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




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