Horje
text align left top Code Example
text align left top
td[rowspan] {
  vertical-align: top;
  text-align: left;
}
text align left top
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
    border: 1px solid black;
}
</style>
</head>
<body>

<TABLE class="w3-table w3-striped w3-bordered w3-border w3-white" style="width:50%;">
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
    <tr style="height:100px">
      <td valign="top">January</td>
      <td valign="bottom">$100</td>
    </tr>
</table>

<p><b>Note:</b> The valign attribute is not supported in HTML5. Use CSS instead.</p>

</body>
</html>




Css

Related
form field focus border remove css Code Example form field focus border remove css Code Example
how to center an hr Code Example how to center an hr Code Example
html remove border from textarea Code Example html remove border from textarea Code Example
how to change the underline thickness in css Code Example how to change the underline thickness in css Code Example
css first td Code Example css first td Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
17