ð

6 "Non-scrolling" Table Head

  1. As with our first table, create a DIV with a CLASS for styling and dump a one-row table in it.
    <div id="screenlistdisplay">
    <table width="98%">
    <tr> 
        <td> ID </td>
        <td> Sev </td>
        <td> Owner </td>
        <td> Summary </td>
    </tr>
    </table>
    </div>
  2. Add whatever styles you want to the main style sheet.
    div#screenlistdisplay td {
    screen header styles here
    }