ericburnard Posted October 20, 2008 Share Posted October 20, 2008 Im not sure if this is the right forum to post this but i wasnt to sure. Basicly i dont have the foggyest how to do this. I have a table say 5x5, alont the top there is A,B,C,D,E and down the side there is 1,2,3,4,5. I have names in the database that need to go into this table. Now the problem is some of these names need to span 2,3 or 4 columns. So, how can i get, say, Dave, who needs to be in row 2 but across columns 2,3 and 4, to span columns 2,3 and 4?? Help is really needed. Thanks Eric Quote Link to comment Share on other sites More sharing options...
rhodesa Posted October 20, 2008 Share Posted October 20, 2008 rowspan and colspan: http://www.w3schools.com/TAGS/tag_td.asp <table> <tr> <td colspan="2">This takes up two columns</td> <td>This will be in the third column</td> </tr> </table> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.