To make one cell cover the space of two columns we need to
provide that attribute in the opening table division tag.
The browser is always going to create the a
number of columns based on the greatest number of <td> tags in any particular
row. To give the impression that columns are "split" you have
to combine columns using the "colspan" attribute.
We want the cell that contains "peaches" to span two columns,
so we add the attribute colspan="2". This will allow
that cell to span two columns.
Let's see how that looks... |