Horje

How to right-align a table (with CSS) on HTML <table> Tag

This is some text to be wrapped around the table. This is some text to be wrapped around the table. This is some text to be wrapped around the table.

index.html
Example: HTML
 <table style="float:right">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table> 

Output should be:

How to right-align a table (with CSS) on HTML <table> Tag




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