gpt4 book ai didi

html - 向右浮动 block IE7 错误

转载 作者:行者123 更新时间:2023-11-28 14:19:07 25 4
gpt4 key购买 nike

我在容器内有两个方 block 。一种是内联 block ,第二种是右浮动 block 。在 IE7 中,右浮动 block 在容器外向下。

当我改变容器内 block 的位置时,所有 block 都落到位。

如何解释这种行为?

也许是不改变 block 的解决方案?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="chrome=1" http-equiv="X-UA-Compatible">
<style>
html, body {
padding: 0;
margin: 0;
}

.header_text {
color: #fff;
font-size: 11px;
height: 19px;
line-height: 19px;
background: green;
}

.text {
padding-left: 10px;
}

.user_info {
float: right;
color: #fff;
padding-right: 10px;
background: red;
}

.clear {
clear: both;
height: 0;
font-size: none;
line-height: 0;
}
</style>
</head>
<body>
<div class="header_text">
<span class="text">Text</span>
<div class="user_info">Hi, <a href="#">Text</a> [ <a href="#">Text</a>]</div>
<div class="clear"></div>
</div>
</body>
</html>

enter image description here

最佳答案

使用 div 而不是 span。

<div class="text">Text</div>

关于html - 向右浮动 block IE7 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8740595/

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