gpt4 book ai didi

html - Internet Explorer 将 div 宽度视为 100%?

转载 作者:太空宇宙 更新时间:2023-11-04 05:11:26 24 4
gpt4 key购买 nike

图像( Logo )的宽度似乎是 100%,因为它将下方的 div (header_box) 向下推。所有其他浏览器的 header_boxes 出现在 Logo 的右侧,但 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;
}

如果您需要更多信息,请告诉我。我不太确定如何描述这个问题。

最佳答案

这是旧版 IE 中的常见问题。您应该能够将所有内容包含在一个带有高度的 div 中,并在您的 Logo css 中包含 float:leftHere是一个可以尝试的 jsfiddle。

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;
}

关于html - Internet Explorer 将 div 宽度视为 100%?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9246341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com