HTML/CSSIntermediate#html#tables

How do colspan and rowspan work in tables?

colspan makes a cell span multiple columns horizontally; rowspan makes a cell span multiple rows vertically. Both take an integer number of cells to merge.

Example
<table>
  <tr><th colspan="2">Name</th><th>Age</th></tr>
  <tr><td rowspan="2">John</td><td>Smith</td><td>30</td></tr>
  <tr><td>Doe</td><td>31</td></tr>
</table>

Related Questions

1
HTML/CSSBeginner#html#media

How do you embed audio and video with fallback controls?

Open
2
HTML/CSSIntermediate#html#media

What is the <picture> element used for?

Open
3
HTML/CSSAdvanced#html#media

What is srcset and sizes used for on <img>?

Open