problem with the scroll bar for <tbody> section with IE

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pravinnweb
    New Member
    • Dec 2007
    • 18

    problem with the scroll bar for <tbody> section with IE

    Hi, i have one table with <thead>,<tbod y> and <tfooter> i have applying the overflow property for <tbody> section in firefox its working fine.but in IE6 the <thead> section is coming in the <tbody> section can anyone give me solution

    here is the code
    [html]
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Untitl ed Document</title>
    <style type="text/css">
    div.scrollWrapp er{
    float:left;
    overflow:visibl e !important;
    overflow:scroll ;
    height:150px;
    }
    table.scrollabl e{
    width:450px;
    margin-right:0 !important;
    margin-right:16px;
    border-collapse:separa te;
    }
    table.scrollabl e th{
    border-top:1px solid #999999;
    border-left:1px solid #999999;
    border-bottom:1px solid #999999;
    padding:5px;
    background:#f7f 7f7;
    position: relative;
    }
    table.scrollabl e tbody{
    height:100px;
    overflow:scroll ;
    }
    table.scrollabl e tr{
    height:0px;
    }
    table.scrollabl e td{
    border-left:1px solid #999999;
    border-bottom:1px solid #999999;
    text-align:center;
    }


    </style>
    </head>

    <body>
    <div class="scrollWr apper">
    <table class="scrollab le">
    <thead>
    <tr>
    <th>Numbers</th>
    <th>Letters</th>
    <th>Symbols</th>
    </tr>
    </thead>
    <tfoot>
    <tr>
    <th>total numbers</th>
    <th>total letters</th>
    <th>total symbols</th>
    </tr>
    </tfoot>
    <tbody>
    <tr>
    <td>111</td>
    <td>aaa</td>
    <td>@@@</td>
    </tr>
    <tr>
    <td>222</td>
    <td>bbb</td>
    <td>###</td>
    </tr>
    <tr>
    <td>222</td>
    <td>bbb</td>
    <td>###</td>
    </tr>
    <tr>
    <td>222</td>
    <td>bbb</td>
    <td>###</td>
    </tr>
    <tr>
    <td>222</td>
    <td>bbb</td>
    <td>###</td>
    </tr>
    <tr>
    <td>222</td>
    <td>bbb</td>
    <td>###</td>
    </tr>
    <tr>
    <td>222</td>
    <td>bbb</td>
    <td>###</td>
    </tr>

    <tr>
    <td>999</td>
    <td>iii</td>
    <td>???</td>
    </tr>
    </tbody>
    </table>
    </div>
    </body>
    </html>
    [/html]

    Thanx in Advance
    Last edited by drhowarddrfine; Feb 14 '08, 02:08 PM. Reason: Please use code tags
Working...