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> 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> 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...! 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> 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! 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
Archived
This topic is now archived and is closed to further replies.