Since the world today is obsessed with loading speeds. I need professional opinion to address my question.
I heard very negative responses when HTML tables are used for layout or are nested. However, does it mean they are slower in every situation compared to CSS + DIVs?
1. HTML Tables
<table width="1024"> <tr> <td width="800">Topic Title</td> <td width="224">Topic Author</td> </tr> <tr> <td>The Tales of the Tides</td> <td>Jackson Helix</td> </tr> </table>
2. DIV + CSS
<style>
.title
{
float: left;
width: 800px;
}
.author
{
float: left;
width: 224px;
}
</style>
<div class="title">Topic Title</div> <div class="author">Topic Author</div>
<div class="title">The Tales of the Tides</div> <div class="author">Jackson Helix</div>
Simple question, which webpage loads faster in this situation?
Or perhaps would Span load even faster than Divs?
Thank you

New Topic/Question
Reply


MultiQuote







|