I need to take three existing tables and put into one table in HTML?

Hi- I have an existing website that is built in Dreamweaver with tables and the client now wants the whole page encased with a border. So I need to put all three tables into one table with a border without re-creating the wheel. Any ideas here? I've looked online but can't find anything that is exactly what I need... and no, I didn't use CSS style sheets. :-(

Public Comments

  1. Encompass the entire thing in a table. <table><tr><td> Existing code in here </td></tr></table>
  2. You could include the entire structure in another table element or you could just wrap everything in a <div style="border: 1px solid black;"></div> That would put a border around the whole thing. Also, tabular data should be in tables so the CSS comment isn't really relevant unless you chose to put non-tabular data in a table just for formatting the page. In which case, you have issues with learning current and better web page design and layout. You can use CSS for tables, rows, and columns for many things. So CSS isn't something you should just ignore. It could help your table look very nice. HTH
Powered by Yahoo! Answers