Internet Explorer将div宽度视为100%?

时间:2012-02-12 04:04:14

标签: html css internet-explorer cross-browser

图像(徽标)的宽度似乎是100%,因为它将下方的div(header_box)向下推。所有其他浏览器header_box都出现在徽标的右侧,但Internet Explorer(当然)正在做一些不同的事情。

HTML

<body>
    <div id="header">
        <img id="logo" src="images/logo.png" alt="Logo" />
        <div class="header_box">
            <img id="profile" src="images/questionmark.png" alt="Profile Image" />
            <span id="profile_name">Sample</span><br />
            <ul id="profile_settings">
                <li>Profile</li>
                <li>Settings</li>
            </ul>
        </div>
        <div class="header_box">
            <img id="notifications" src="images/notifications.png" alt="Notifications" />
        </div>
        <div class="clear"></div>
    </div>

CSS

#header {
background:#3A3A3A;
color:white;
border-bottom:5px #771439 solid;
-moz-box-shadow: 0 1px 5px 3px #888;
-webkit-box-shadow: 0 1px 5px 3px#888;
box-shadow: 0 1px 5px 3px #888;
}

#logo {
height:82px;
display:inline;
}

.header_box {
display:inline-block;
float:right;
background:#262626;
padding:5px;
margin:16px 15px 12px 0;
border-radius: 5px; 
-moz-border-radius: 5px; 
-webkit-border-radius: 5px; 
border: 1px #474747 solid;
text-align:left;
font-size:11px;
min-height:40px;
}

如果您需要更多信息,请与我们联系。我不确定如何描述这个问题。

1 个答案:

答案 0 :(得分:2)

这是旧版IE中的常见问题。您应该能够将所有内容包含在高度为div的div中,并在徽标css中包含float:leftHere是一个尝试它的方法。

HTML

<div style="height"82px;">
    <img id="logo" src="images/logo.png" alt="Logo" />
    <div class="header_box">
        <img id="profile" src="images/questionmark.png" alt="Profile Image" />
        <span id="profile_name">Sample</span><br />
        <ul id="profile_settings">
            <li>Profile</li>
            <li>Settings</li>
        </ul>
    </div>
    <div class="header_box">
        <img id="notifications" src="images/notifications.png" alt="Notifications" />
    </div>
</div>

CSS

#logo {
float:left;
height:82px;
display:inline;
}