gpt4 book ai didi

具有样式 float :left 的 html 元素

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
#wrapper{
width:100%;
height:auto;
background-color:#009;
}
#container_left{
float:left;
width:200px;
text-align:center;
height:100px;
background-color:#960;
}
#container_right{
float:right;
width:200px;
text-align:center;
height:100px;
background-color:#909;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sample Document</title>
</head>
<body>
<div id="wrapper">
<div id="container_left">
left div
</div>
<div id="container_right">
right div
</div>
</div>

</body>
</html>

我原以为带有 id wrapper 的 div 具有其内容的高度,但 wrapper div 似乎已经从正文中消失了,因为 background-color 不能正常工作。

当我从内部 div 元素中删除 float:left 时,它会重新出现,但此解决方案对于整体设计而言是不正确的。

还有其他解决方案吗?

最佳答案

因为带float的元素可以浮出父元素的盒子

<div id="wrapper">
<div id="container_left">
left div
</div>
<div id="container_right">
right div
</div>
<div style="clear:both; overflow:hidden; height: 0px;">&nbsp;</div>
</div>

您必须将具有清晰样式的元素放在父内容的末尾 - 它将放置在两个 float div 的下方并且不会 float 到框外(因此父 div 将被调整为原始大小)

其他解决方案是为父div设置高度

关于具有样式 float :left 的 html 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8831425/

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