1

How I can make a TD one more than one row in HTML?

To make it like this:

http://quebecencalvaire.ca/sov/this.png

The avatar is a TD and the sidebar another, but they are both in the same table of the TD "some text"...

It's for a profile page...

Frederick Marcoux
  • 2,195
  • 1
  • 26
  • 57
  • *Possible* duplicate of [HTMl Table different number of columns in different rows](http://stackoverflow.com/questions/3838488/html-table-different-number-of-columns-in-different-rows) – David Thomas Jan 02 '12 at 23:47

3 Answers3

1

You just need to use rowspan

You can read more here: http://reference.sitepoint.com/html/th/rowspan

As an example:

<td rowspan="2">Whatever</td>

Jason Gennaro
  • 34,535
  • 8
  • 65
  • 86
1

You could check out the rowspan and colspan attributes.

As explained here.

JK.
  • 5,126
  • 1
  • 27
  • 26
  • 1
    Please consider linking to resources that are more reliable, such as W3C itself or the Mozilla Developer Network. See http://w3fools.com/ – Neil Jan 03 '12 at 00:33
0

The link below will shows you the code for your problem... http://jsfiddle.net/tashniamit/SCwWt/

me_digvijay
  • 5,374
  • 9
  • 46
  • 83