Dysan Posted December 31, 2007 Share Posted December 31, 2007 How do I create the table at the following URL, that displays exactly the same in Internet Explorer (IE) and FireFox (FF), using a table & CSS? http://www.freewebs.com/ticstacs/table/plan.bmp Quote Link to comment Share on other sites More sharing options...
Daniel0 Posted January 1, 2008 Share Posted January 1, 2008 Like this? <style type="text/css"> #the_table, #the_table th, #the_table tr, #the_table td { border: 1px solid #8abc01; border-collapse: collapse; } #the_table { width: 193px; height: 54px; } </style> <table id="the_table"> <tr height="21px"> <th width="31px"></th> <th></th> </tr> <tr> <td></td> <td></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.