IE兼容性视图中的100%父div宽度

时间:2011-07-11 15:44:06

标签: html internet-explorer-7 width incompatibility

我遇到IE兼容性视图的问题。我必须考虑到这一点,因为不幸的是我的公司使用的某些网站需要它。我有一个可以在屏幕底部折叠的栏。除了IE的兼容性视图外,它在一切都很好用,我找不到罪魁祸首。基本上,我试图让父div自动调整其内容的宽度。出于某种原因,在兼容性视图中,父div显示的屏幕宽度为100%。我没有任何暗示它应该是100%的造型,但它无论如何都会这样做。我将在下面发布我的代码。如果您能提供任何建议,请告诉我们!谢谢,

菲尔

<style>
#bar_wrapper{
    position: fixed; 
    bottom: 0px; 
    left: 0px;   
}
#bottom_bar{
    padding: 5px; 
    height: 90px;   
    background: url(scoreboards/stats_bar/images/bcktool.gif);
    z-index: 9999; 
     -moz-border-radius-topleft: 8px;
    -khtml-border-radius-topleft: 8px;
    -webkit-border-top-left-radius: 8px;
    -moz-border-radius-topright: 8px;
    -khtml-border-radius-topright: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-box-shadow: 0px 1px 10px #666, inset 1px 1px 0px #a4a4a4;
  -khtml-box-shadow: 0px 1px 10px #666;
  -webkit-box-shadow: 0px 1px 10px #666;
  /* CSS3 end */
    border-top: 1px solid #eee;
  border-left: 1px solid #eee; 
  border-right: 1px solid #eee;
}
#left_side{
    float: left;    
}
#right_side{
    float: right;   
}
#minimize{
    right: 0px; 
    top: 0px;   
}
#minimize a{
    text-decoration: none;  
}
.section{
    background-color: #e4e4e4;  
    padding: 5px;
    height: 82px;
    border-right: 1px solid #a4a4a4;
    float: left;
    text-align: center;
}
.heading{
    font-weight: bold;  
}
table{
    text-align: left;   
}
</style>


<div id="bar_wrapper" class="clear">
    <div id="bottom_bar" style="display: none;">
<div id="left_side">
        <div class="section" style="text-align: center;">
            <span class='heading'>PR. to UW. Submit AVG: </span> <br />
            <span id="pr_to_uw"></span>&nbsp;day(s)
        </div>
    </div>
    <div id="right_side" style="height: 90px;">
        <br />
        <div id="up_arrow" style="display: none;"></div>
        <div id="minimize"> 
<a href="javascript:minimize();">img</a>
        </div>
</div>
</div>
</div>

0 个答案:

没有答案