Hi Adam, Thank you very much for your help. I tried your suggestion and achieved the desired results. See code below if interested.
Regarding your question and points about table vs. css. There are a number of considerations at play here for my development effort. 1. I am trying to build a site that will be truly useful to those users whom use assisted technology to interact with websites. But, having never done so before, I am on the steep side of the learning curve. 2. My less than expert understanding of accessability has lead me to believe that information which is linear in nature (like name, address, phone, DOB...) should not be presented in a table unless it was a repeating list of like information. I would be interested in any thoughts about this from you or any other list member. I am here to learn. Regards and appreciation for sharing your ideas, Mark <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> <title>Test Page</title> <style type="text/css"> .left-column { float:left; width: 50%; } .data { width: 4em; padding-left: 1em; } .label { width: 8em; float: left; } </style> </head> <body> <div class="left-column"> <div><span class="label">Name:</span><span class="data">John</span></div> <div><span class="label">Home Phone:</span><span class="data">999-888-7777</span></div> </div> <div class="right-column"> <div><span class="label">Address:</span><span class="data">111 Main Street</span></div> <div><span class="label">Email:</span><span class="data">[EMAIL PROTECTED]</span></div> </div> </body> </html> ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/