Skip to content Skip to sidebar Skip to footer

How To Make A On More Than One Row?

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 th

Solution 1:

You could check out the rowspan and colspan attributes.

As explained here.

Solution 2:

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>

Solution 3:

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

Post a Comment for "How To Make A On More Than One Row?"