El atributo HTML <col> 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 <col>.
Sintaxis:
<col charoff="number">
Valores de atributo: contiene un número de valor único que contiene el valor numérico que especifica la alineación.
- Valores positivos: Indica la alineación a la derecha de los caracteres.
- Valores negativos: Indica la alineación a la izquierda de los caracteres.
Nota: este atributo no es compatible con HTML 5.
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML col charoff Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML col charoff Attribute</h2> <table border="1"> <caption>Author Details</caption> <col width="150" align="char" char="." valign="top" charoff ="3"> <col width="80" align="char" char="." valign="top" charoff ="3"> <col width="120" align="char" char="." valign="top"> <tr> <th>NAME</th> <th>AGE</th> <th>BRANCH</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> <tr> <td>RAM</td> <td>21</td> <td>ECE</td> </tr> </table> </body> </html>
Producción:
Navegadores compatibles: este atributo no es compatible con ningún navegador.
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA