Guest Drizzle Posted June 3, 2010 Posted June 3, 2010 Ok so i can't figure out how to do a 4 column table. Its sort of like a regular table going straight down, but i want to know how to get all the rows into 3 different columns. I searched google and didnt find anything. Anyone help? Quote
Zero-Affect Posted June 3, 2010 Posted June 3, 2010 <table width="100%" cellpadding="1" cellspacing="1"> <tr> <th>one</th> <th>two</th> <th>three</th> <th>four</th> </tr> <tr> <td colspan="2">one / two</td> <td>three</td> <td>four</td> </tr> </table> like that? Quote
Guest Drizzle Posted June 3, 2010 Posted June 3, 2010 . <table width="100%" cellpadding="1" cellspacing="1"> <tr> <th>one</th> <th>two</th> <th>three</th> <th>four</th> </tr> <tr> <td colspan="2">one / two</td> <td>three</td> <td>four</td> </tr> </table> like that? Thanks for atleast trying to help :). But its more along the lines of.. ok. there are 4 columns of however many rows. but all the boxes display some data. I've included sorta what im trying to do with a basic table with all the boxes containing something. Quote
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.