Oct 28, 2003 #1 maxpower1 Programmer Jul 29, 2001 488 US How do you make a table's rows and columns lines appear even if the table is empty? thanks ~za~ You can't bring back a dead thread!
How do you make a table's rows and columns lines appear even if the table is empty? thanks ~za~ You can't bring back a dead thread!
Oct 28, 2003 1 #2 dmears1 Technical User Jun 18, 2003 208 US If you add a non-breaking space (  to empty cells, this should make the borders visible: Example: <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td> </td> </tr> </table> Also, see http://www.w3schools.com/html/html_tables.asp. Upvote 0 Downvote
If you add a non-breaking space (  to empty cells, this should make the borders visible: Example: <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td> </td> </tr> </table> Also, see http://www.w3schools.com/html/html_tables.asp.
Oct 28, 2003 #4 dmears1 Technical User Jun 18, 2003 208 US My bad, the example should be: <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td> </td> </tr> </table> Thanks ConeHead for the correction Upvote 0 Downvote
My bad, the example should be: <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td> </td> </tr> </table> Thanks ConeHead for the correction
Oct 28, 2003 #5 dmears1 Technical User Jun 18, 2003 208 US OK...lol, I'm a bonehead. <td>& N B S P ;</td> with no spaces. Upvote 0 Downvote
Oct 28, 2003 #6 Vragabond Programmer Jul 23, 2003 5,100 AT thread215-687991 thread showed how you write so that it shows up. Upvote 0 Downvote
Oct 29, 2003 #7 dmears1 Technical User Jun 18, 2003 208 US Thanks for the link Vragabond...I knew there had to be a way to write it & it show up. Upvote 0 Downvote