Is there a way to improve the speed of downloading of 10 of these html tables with CSS?

I used Selida 2 on it but didn't get anything significant. <table cellpadding="0" cellspacing="1"> <tbody> <tr> <td> /td> </tr> <tr valign="top"> <td class="c5"> <br>  </td> </tr> </tbody> </table> Thanks, Lisa

Public Comments

  1. Adding a <tfoot> will help each table render faster, but it will still wait for one whole table to come in before moving on to the next. A better solution might be to use <div> for things that aren't tabular data!
  2. you don't need the <tbody> tag. You can put the table in an include file <!-- #include file=" etc. This way they only have to download the table once. You're table is pretty small and shouldn't take too long to download for them.
Powered by Yahoo! Answers