gpt4 book ai didi

css - 菜单 div 的父 div 上的自动高度...如何?

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

基本的想法是让包装器根据 child 的高度自动扩展高度。但问题是子菜单有一个 float 属性,如果它比内容大——它只是突出来,你可以通过加载代码看到这一点。我不喜欢玩相对位置,表格单元格。如果我在包装器上设置 float:left 它实际上会出于某种原因破坏我的整个标记。我还有其他方法可以做到这一点吗?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style>
div.wrap{
background-color:grey;
padding:5px;
}
div.left{
background-color:orange;
float:left;
width:200px;
height:400px;
}
div.content{
margin-left:200px;
height:200px;
background-color:white;
}
</style>
</head>
<body>
<div class="wrap">
<div class="left">
Menu
</div>
<div class="content">
Text
</div>
</div>
</body>
</html>

最佳答案

内部div.wrap :

<div class="clear"></div>

内部<style> :

div.clear{
clear:both;
}

关于css - 菜单 div 的父 div 上的自动高度...如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10506200/

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