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 Link to comment https://forums.phpfreaks.com/topic/83789-simple-table/ 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> Link to comment https://forums.phpfreaks.com/topic/83789-simple-table/#findComment-427215 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.