HTML | atributo char

El atributo char HTML <colgroup> se utiliza para establecer la alineación del contenido en un grupo de columnas en un carácter. Solo se puede usar si el atributo de alineación se establece en «carácter». El valor predeterminado de char es el carácter de punto decimal del idioma de la página.
Sintaxis: 
 

<colgroup char="character">

Valores de atributos: 
 

  • carácter: Especifica la alineación del contenido a un carácter.

Ejemplo: 
 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML ColumnGroup char 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 char Attribute
    </h2>
 
    <table>
        <colgroup id="myColGroup"
                  span="3"
                  align="char"
                  char=".">
        </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: ninguno de los principales navegadores admitía el atributo char <colgroup>. 

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 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 *