“Texte aligne le haut gauche” Réponses codées

Texte aligne le haut gauche

td[rowspan] {
  vertical-align: top;
  text-align: left;
}
DevLorenzo

Texte aligne le haut gauche

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
    border: 1px solid black;
}
</style>
</head>
<body>

<table 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>
DevLorenzo

Réponses similaires à “Texte aligne le haut gauche”

Questions similaires à “Texte aligne le haut gauche”

Plus de réponses similaires à “Texte aligne le haut gauche” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code