“Texto alinearse a la izquierda” Código de respuesta

Texto alinearse a la izquierda

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

Texto alinearse a la izquierda

<!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

Respuestas similares a “Texto alinearse a la izquierda”

Preguntas similares a “Texto alinearse a la izquierda”

Más respuestas relacionadas con “Texto alinearse a la izquierda” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código