HTML | Atributo de intervalo <colgroup>

El atributo span HTML <colgroup> se utiliza para definir el número de columnas que debe abarcar un elemento  <colgroup> .

Sintaxis:

<colgroup span="number">

Valores de atributos:

  • número: contiene el valor numérico que especifica el número de elementos col que debe abarcar.

Ejemplo: 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML ColumnGroup span Attribute
    </title>
 
    <style>
        #myColGroup {
            background: green;
        }
         
        table {
            color: white;
            margin-left: 180px;
            background: yellow;
        }
         
        #Geek_p {
            color: green;
            font-size: 30px;
        }
         
        td {
            padding: 10px;
        }
    </style>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>
      HTML ColumnGroup span Attribute
  </h2>
 
    <table>
        <colgroup id="myColGroup" span="2">
      </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 HTML <colgroup> span Attribute se enumeran a continuación:

  • Google cromo 1
  • Borde 12
  • explorador de Internet
  • Firefox 1
  • safari de manzana
  • Ópera

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 *