Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hopefully this is my last css question.

I have a scrolling table where the headers are positioned using abosolute so it doesn't scroll down while scrolling the table while the rows are positioned as relevant. Now The problem I have is that my table headings and table rows are all lined with each other column to column perfectly on every single browser (opera, firefox, chrome, safari) but it is not exactly inline in Internet Explorer. It is about 8-12 pixels out at the end of the table headings. It seems like when you go along the table headings, it is losing a pixel for every heading.

Why is this happening?

html table:

    <h1>PREPARE QUESTIONS AND ANSWERS</h1>
    <br/>
    <div id="tableWrapper">
    <div id="tableScroll">
    <table id="qandatbl" align="center">
    <thead>
    <tr>
    <th class="col1">Question No</th>
    <th class="col2">Option Type</th>
    <th class="col1">Duration</th>
    <th class="col2">Weight(%)</th>
    <th class="col1">Answer</th>
    <th class="col3">Video</th>
    <th class="col4">Audio</th>
    <th class="col3">Image</th>
    </tr>
    </thead>
    <tbody>


    <tr>
    <td class="qid"><?php echo $i; ?></td>
    <td class="options"></td>
    <td class="duration"></td>
    <td class="weight"></td>
    <td class="answer"></td>
    <td class="video"></td>
    <td class="audio"></td>
    <td class="image"></td>
    </tr>
    </tbody>

</table>
</div>
</div>

css:

#qandatbl{
 font-size:14px;
 border-collapse:collapse;
 margin:0px;
 text-align:center;
 margin-left:auto; 
 margin-right:auto;
            }

.col1{

                background-color:#FCF6CF; 
            max-width:125px;
            min-width:125px;    
            border: 1px solid black;
            }
            .col2{
            background-color:#FEFEF2;
            max-width:125px;
            min-width:125px;;  
            border: 1px solid black;    
            }   
            .col3{
            background-color:#FEFEF2; 
            max-width:350px;
            min-width:350px;    
            border: 1px solid black;
            }
            .col4{
            background-color:#FCF6CF;
            max-width:350px;
            min-width:350px;    
            border: 1px solid black;
            }
                .options{
            overflow:hidden;
            max-width:125px;       
            min-width:125px;
            background-color:#FCF6CF;
            border: 1px solid black;
                }
            .duration{
            overflow:hidden;
            max-width:125px;
            min-width:125px;
            background-color:#FEFEF2;
            border: 1px solid black;
                }
            .weight{
            overflow:hidden;
            max-width:125px;
            min-width:125px;
            background-color:#FCF6CF;
            border: 1px solid black;
                }
             .answer{
            overflow:hidden;
            max-width:125px;
            min-width:125px;
            background-color:#FEFEF2;
            border: 1px solid black;
                }
            .qid{
            overflow:hidden;
            max-width:125px;
            min-width:125px;
            background-color:#FEFEF2;
            border: 1px solid black;
                }
            .video{
            overflow:hidden;
            max-width:350px;
            min-width:350px;
            background-color:#FCF6CF;
            border: 1px solid black;
                }
            .audio{
            overflow:hidden;
            max-width:350px;
            min-width:350px;
            background-color:#FEFEF2;
            border: 1px solid black;
                }
            .image{
            overflow:hidden;
            max-width:350px;
            min-width:350px;
            background-color:#FCF6CF;
            border: 1px solid black;
                }
             #tableWrapper {
  position:relative;
}
#tableScroll {
  height:300px;
  overflow:auto;  
  margin-top:20px;
}

#tableWrapper thead tr {
position:absolute;
top:-24px;
}  
share|improve this question
1  
Make a conditional stylesheet for IE. – Blender Nov 23 '11 at 1:36
1  
IE is not a modern browser and can never be trusted to do anything right. Are you using a doctype? – Rob Nov 23 '11 at 2:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.