-3

I'm having a little trouble making a HTML table that follows this structure

Table example

Can anyone shine any light on how this would be created?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
  • 1
    What sort of data do you have that would be appropriate to express in a table of that shape? – Quentin Apr 27 '16 at 13:15
  • You are looking for [`rowspan`](http://stackoverflow.com/questions/9830506/how-do-you-use-colspan-and-rowspan-in-html-tables) - but as Quentin insinuates above, there may be better ways to do this with modern CSS. `` elements should generally be used for the representation of tabular data.
    – Pekka Apr 27 '16 at 13:16

1 Answers1

-2

You could also use colspan as well as rowspan. Same formatting:

<td colspan="2"></td>
bluguy
  • 113
  • 1
  • 1
  • 8