gpt4 book ai didi

css - Div 显示不正确

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

html

<body>
<div class="left"></div>
<div class="right"></div>
</body>

CSS

body{
height:100%
}
.left{
float:left;
background-color:#ccffcc;
height:100%;
width:50%;
}
.right{
height:100%;
width:50%;
float:right;
background-color:#ffcc99
}

我已经设置了父元素的高度

我需要做什么才能看到我的两个 div?

它似乎只有在我使用像素时才有效,但我不喜欢使用像素...

最佳答案

也将 height:100% 添加到 html 中

body, html{
height:100%
}

DEMO

关于css - Div 显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20836703/

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