HTML | <col> abarcan atributo

El atributo HTML <col> span se utiliza para especificar cuántos números de elemento col deben abarcar

Sintaxis:

<col span="number">

Valores de atributo: contiene el valor numérico que especifica el número de elementos de columna que debe abarcar. 

Ejemplo: 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
      HTML col span Attribute
  </title>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
 
    <h2>HTML col span Attribute</h2>
 
    <table border="1">
        <colgroup>
            <col span="2"
                 style="background-color:green">
                <col style="background-color:blue">
        </colgroup>
        <tr>
            <th>Name</th>
            <th>Branch</th>
            <th>Expenses</th>
        </tr>
 
        <tr>
            <td>BITTU</td>
            <td>CSE</td>
            <td>2500.00</td>
        </tr>
 
        <tr>
            <td>RAKESH</td>
            <td>ECE</td>
            <td>1400.00</td>
        </tr>
    </table>
</body>
 
</html>

Producción:

  

Navegadores compatibles: los navegadores compatibles con el atributo span HTML <col> se enumeran a continuación:

  • Google Chrome 1 y superior
  • Borde 12 y superior
  • explorador de Internet
  • Firefox 1 y superior
  • Safari
  • Ópera

Publicación traducida automáticamente

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