HTML | Atributo de ancho <colgroup>

El atributo HTML <colgroup> width se utiliza para especificar el ancho del elemento colgroup. El atributo <colgroup> establece un ancho predefinido del grupo de columnas.

Sintaxis:

<colgroup width="pixels|%|relative_lngth">

Valores de atributos:

  • píxeles: especifica el ancho del grupo de columnas en términos de píxeles.
  • %: Especifica el ancho del elemento colgroup en porcentaje. Para ex-ancho = «50%»
  • relative_length: Divide la longitud de la tabla en términos de píxeles.

Nota: El

El atributo de ancho no es compatible con HTML 5.

Ejemplo:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML ColumnGroup width Attribute 
    </title> 
  
    <style> 
        #myColGroup { 
            background: green; 
        } 
          
        table { 
            color: white; 
            background: yellow; 
        } 
          
        #Geek_p { 
            color: green; 
            font-size: 30px; 
        } 
          
        td { 
            padding: 10px; 
        } 
    </style> 
</head> 
  
<body> 
    <center>
        <h1 style="color:green;"> 
            GeeksForGeeks 
        </h1> 
      
        <h2>HTML ColumnGroup width Attribute</h2> 
      
        <table> 
            <colgroup id="myColGroup" span="3"
                    align = "left" width="150"> 
            </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> 
    </center>
</body> 
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con el atributo de ancho <colgroup> se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Safari
  • Ópera

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 *