HTML Table Colspan & Rowspan

0
2χλμ.

HTML Table Colspan and Rowspan

Colspan and rowspan are attributes used to merge cells in a table.

Colspan

  • Purpose: Merges multiple columns into a single cell.
  • Attribute: colspan
  • Example:
    HTML
    <table>
      <tr>
        <th>Product</th>
        <th>Price</th>
        <th colspan="2">Quantity</th>
      </tr>
      <tr>
        <td>Product A</td>
        <td>$100</td>
        <td>10</td>
        <td>20</td>
      </tr>
    </table>
    
    In this example, the third header cell spans two columns.

Rowspan

  • Purpose: Merges multiple rows into a single cell.
  • Attribute: rowspan
  • Example:
    HTML
    <table>
      <tr>
        <th>Product</th>
        <th>Price</th>
        <th>Quantity</th>
      </tr>
      <tr>
        <td rowspan="2">Product A</td>
        <td>$100</td>
        <td>10</td>
      </tr>
      <tr>
        <td>$200</td>
        <td>20</td>
      </tr>
    </table>
    
    In this example, the first cell in the second row spans two rows.

Important Notes

  • Header Cells: If you use colspan or rowspan with header cells, ensure that the scope attribute (col or row) is set correctly to provide accurate information for assistive technologies.
  • Cell Content: Cells that span multiple rows or columns should typically contain content that is relevant to all the merged cells.
  • Complex Tables: For complex tables with multiple levels of merging, it's often helpful to plan the structure carefully before creating the HTML.

By effectively using colspan and rowspan, you can create more efficient and visually appealing table layouts, especially for tables with repetitive or grouped data.

Like
2
Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Technology
Web Development Best Practices
Web Development Best Practices: A Comprehensive Guide Web development is an ever-evolving field,...
από ALAGAI AUGUSTEN 2024-07-26 17:54:12 0 4χλμ.
Chemistry
NEW CURRICULUM CHEMISTRY PRACTICAL SAMPLES
https://acrobat.adobe.com/id/urn:aaid:sc:EU:4838a935-5393-417a-a9b9-a4c21d6109cb
από Landus Mumbere Expedito 2024-07-18 19:33:23 0 3χλμ.
Εκπαίδευση
S.4 SOLUTIONS TO THE PHYSICS SEMINAR QUESTIONS
S.4 SOLUTIONS TO THE PHYSICS SEMINAR QUESTIONS
από Landus Mumbere Expedito 2024-07-26 17:07:09 0 3χλμ.
Technology
S5 KABS ICT RESOURCE 2023
S5 KABS ICT RESOURCE 2023
από ICT TUTORIALS 2024-11-16 02:25:05 0 1χλμ.
Chemistry
UACE WAKISSHA CHEMISTRY PAPER 1 GUIDE 2014
UACE WAKISSHA CHEMISTRY PAPER 1 GUIDE 2024
από Advanced Level chemistry 2024-08-31 09:56:47 2 2χλμ.