El atributo HTML th charoff se utiliza para establecer el número de caracteres que alinean los caracteres especificados por el atributo char. Este atributo solo se puede usar en el atributo char y el atributo align se especifica en el elemento th .
Nota: HTML 5 no admite el atributo th charoff.
Sintaxis:
<th charoff="number">
Valores de atributos:
- número: Contiene el valor numérico que especifica la alineación del elemento.
- Valores positivos: indican la alineación a la derecha de los caracteres.
- Valores negativos: indican la alineación a la izquierda de los caracteres.
Ejemplo: El siguiente código HTML ilustra el uso del atributo charoff en <th>.
HTML
<!DOCTYPE html> <html> <head> <title>HTML th charoff 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 charoff Attribute</h2> <table> <thead> <!-- tr tag starts here --> <tr align="char" charoff="."> <th align="char" charoff="." > 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:
Navegadores compatibles: este atributo está obsoleto de HTML5 y no está en uso.
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA