ð

3 Fake a Frame and Go for Speed

  1. Remember the DIV surrounding the table? Style it.
  2. If applicable, use a fixed layout table to speed the display of the table.
  3. Add the new styles to your main (non-print) style sheet. Result:
    <style type="text/css">
    table {table-layout: fixed }
    
    div#swissarmy 
    {
    width: 100%;
    height: 325px;	  /*make the div look like a frame*/
    overflow: auto;	  /*scrollbars only if content does not fit*/
    }
    </style>