dezkit Posted April 13, 2008 Share Posted April 13, 2008 Is there a way i can make a table (with a border) inside another table(without borders)? <body bgcolor="#EEEEEE"> <br><br><br> <form> <table border=0> <tr> <td>Username: <td><input type="text"> <tr> <td>Password: <td><input type="text"> <tr> <td colspan="2" align="right"><input type="submit" value="submit"> </table> </form> Quote Link to comment https://forums.phpfreaks.com/topic/100925-solved-table-in-a-table/ Share on other sites More sharing options...
dezkit Posted April 13, 2008 Author Share Posted April 13, 2008 nevermind, i got it <br><br><br> <table border=1> <tr> <td> <body bgcolor="#EEEEEE"> <form> <table border=0> <tr> <td>Username: <td><input type="text"> <tr> <td>Password: <td><input type="text"> <tr> <td colspan="2" align="right"><input type="submit" value="submit"> </table> </form> Quote Link to comment https://forums.phpfreaks.com/topic/100925-solved-table-in-a-table/#findComment-516113 Share on other sites More sharing options...
TheFilmGod Posted April 13, 2008 Share Posted April 13, 2008 That right there proves why tables shouldn't be used...! Quote Link to comment https://forums.phpfreaks.com/topic/100925-solved-table-in-a-table/#findComment-516116 Share on other sites More sharing options...
dezkit Posted April 13, 2008 Author Share Posted April 13, 2008 lol, fieldset is better, but its KINDA UGLY! with that 'not touching' edges in firefox <center><br> <body bgcolor="#EEEEEE"> <table border=0> <td> <fieldset> <legend>Login</legend> <form> <table border=0> <tr> <td>Username: <td><input type="text"> <tr> <td>Password: <td><input type="text"> <tr> <td colspan="2" align="right"><input type="submit" value="submit"> </form> </table> </table> </fieldset> Quote Link to comment https://forums.phpfreaks.com/topic/100925-solved-table-in-a-table/#findComment-516121 Share on other sites More sharing options...
dezkit Posted April 13, 2008 Author Share Posted April 13, 2008 hehe, i finally found a good style for a table! <table border=1 style="border-style: double"> topic solved! Quote Link to comment https://forums.phpfreaks.com/topic/100925-solved-table-in-a-table/#findComment-516134 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.