HTML Tutorial

Table Row Span

Sometimes you want table entries that stretch over several rows; that’s when you’ll use `rowspan` as an attribute in HTML. It can be used on table cells such as `<th>` or `<td>` so a cell may take space over several rows.

 

For example, take a television show. ABC is airing a film across two-time slots that fall between 6 to 8 PM. Meanwhile, BBC and CNN are airing two different programs simultaneously but for an hour each. If `rowspan` is used, the film would be ‘inscribed’ over both rows, while the other networks will have two separate cells each for the program.

 

Then you can see that one of the rows has fewer table cells than the total number of columns. This is because the rowspan attribute stretches the cell for the movie down so it occupies space in the row below it, so there’s no call for an extra cell in that spot either.

Example

Here’s an HTML table example demonstrating the use of the rowpan attribute, 

				
					<table border="1" cellpadding="10">
    <thead>
        <tr>
            <th>Time</th>
            <th>ABC</th>
            <th>BBC</th>
            <th>CNN</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th>6:00 PM - 7:00 PM</th>
            <td rowspan="2">Movie</td>
            <td>News</td>
            <td>Sports</td>
        </tr>
        <tr>
            <th>7:00 PM - 8:00 PM</th>
            <td>Documentary</td>
            <td>Talk Show</td>
        </tr>
        <tr>
            <th>8:00 PM - 9:00 PM</th>
            <td>Drama</td>
            <td>News</td>
            <td>Drama</td>
        </tr>
    </tbody>
</table>

				
			

Try It Yourself

Share with friends

Leave a comment

Your email address will not be published. Required fields are marked *