Horje

How to set Default CSS Settings on HTML <td>

Most browsers will display the <td> element with the following default values.

index.html
Example: HTML
<style>
td {
  display: table-cell;
  vertical-align: inherit;
}
</style>
 <table>
  <tr>
    <td>Cell A</td>
    <td>Cell B</td>
  </tr>
  <tr>
    <td>Cell C</td>
    <td>Cell D</td>
  </tr>
</table> 





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