Atributo de carácter HTML <th>

El atributo char HTML <th> se usa para especificar la alineación con el carácter del contenido en una celda de encabezado de tabla. Solo contiene el atributo char align. Su valor predeterminado es un punto decimal para el idioma de la página. 

Nota: No es compatible con HTML5.

Sintaxis:

<th char="character">

Valores de atributos:

  • carácter: Se utiliza para especificar el carácter para alinear el contenido dentro de la celda del encabezado.

Ejemplo:

HTML

<!DOCTYPE html>
<html>
  
<head>
    <title>HTML th char attribute</title>
    <style>
        body {
            text-align: center;
        }
          
        h1,h2 {
            color: green;
        }        
        th {
            color: blue;
        }        
        table,
        tbody,
        td {
            border: 1px solid black;
            border-collapse: collapse;
        }
    </style>
</head>
  
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h2> HTML th char Attribute</h2>
        <table>
            <thead>                
                <tr align="char" charoff=".">
                    <th align="char" char="." >
                      Country_name
                    </th>
                    <th>Total Medals</th>
                </tr>            
             </thead>
            <tbody>
                <tr>
                    <td>China</td>
                    <td>34</td>
                </tr>
                <tr>
                    <td>India</td>
                    <td>45</td>
                </tr>
            </tbody>
        </table>
    </center>
</body>
</html>

Producción:

HTML <thgt; char attribute

Navegadores compatibles: no es compatible con ningún navegador.

Publicación traducida automáticamente

Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *