El atributo HTML <colgroup> 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 colgroup.
Sintaxis:
<colgroup charoff="number">
Valores de atributos:
- número: Contiene el valor numérico que especifica la alineación.
- Los valores positivos indican la alineación a la derecha de los caracteres.
- Los valores negativos indican la alineación a la izquierda de los caracteres.
- Google Chrome no compatible
- Internet Explorer no compatible
- Firefox no compatible
- Safari de Apple no compatible
- Ópera no compatible
Ejemplo:
<!DOCTYPE html> < html > < head > < title > HTML ColumnGroup charoff Attribute </ title > < style > #myColGroup { background: green; } table { color: white; margin-left: 180px; background: yellow; } #Geek_p { color: green; font-size: 30px; } td { padding: 10px; } h1, h2 { text-align: center; } </ style > </ head > < body > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 > HTML ColumnGroup charoff Attribute </ h2 > < table > < colgroup id = "myColGroup" span = "3" align = "char" char = "." charoff = "3" > </ colgroup > < tr > < th >S.No</ th > < th >Title</ th > < th >Geek_id</ th > </ tr > < tr > < td >Geek_1</ td > < td >GeekForGeeks</ td > < th >Geek_id_1</ th > </ tr > < tr > < td >Geek_2</ td > < td >GeeksForGeeks</ td > < th >Geek_id_2</ th > </ tr > </ table > </ body > </ html > |
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo charoff de HTML <colgroup> se enumeran a continuación:
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA