Could someone tell me why i can't get "Box 3" to span the two other boxes using Rowspan please. Thanks in advance
<table width="200" border="2" cellpadding="10" cellspacing="10">
<tr><td width="150">Box 1</td></tr>
<tr>
<td width="150">Box 2</td>
<td width="50" rowspan="2">Box 3</td></tr>
</table>
Page 1 of 1
Rowspan Help
#2
Posted 12 September 2007 - 01:14 PM
so pretty much you want Box 3 to allign with the other two boxes right?
#3
Posted 12 September 2007 - 01:26 PM
try this:
<table width="118" height="168" border="2" cellpadding="10" cellspacing="10"> <tr><td width="72" >Box 1</td> </tr> <tr> <td width="72"rowspan="2">Box 2</td> </tr> <tr> </tr> <tr> <td width="72" height="42" rowspan="2">Box 3</td> </tr> </table>
#4
Posted 13 September 2007 - 11:30 AM
Are you trying to achieve this:

?
If so, change your code to have the box 3 in the same row as box 1:
Hope that helps,
jpshortstuff
?
If so, change your code to have the box 3 in the same row as box 1:
<table width="200" border="2" cellpadding="10" cellspacing="10"> <tr> <td width="150">Box 1</td> <td width="50" rowspan="2">Box 3</td></tr> <tr> <td width="150">Box 2</td> </tr> </table>
Hope that helps,
jpshortstuff
Trained at the What The Tech Classroom where you too could learn to help others.
My help is free, however, if you wish to make a small donation to show appreciation and to help me continue the fight against Malware, then click here
My help is free, however, if you wish to make a small donation to show appreciation and to help me continue the fight against Malware, then click here

Share this topic:
Page 1 of 1

Help


Back to top










