gpt4 book ai didi

html - 如何在 css 中将屏幕划分为这些 div?

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

我怎样才能让我的页面看起来像这样: enter image description here

当左、右(上div)

当A和B的高度未知时(好吧,内容最多的人将决定比C低多少)

提前致谢

最佳答案

我会将这些部分设置为百分比,这样无论用户的屏幕尺寸如何,您都可以获得这些比例。

CSS

#sectionA
{
float:left;
width: 20%;
}
#sectionB
{
float:left;
width: 80%;
}

#sectionB
{
clear:both;
width: 100%;
}

HTML

<div id="sectionA"></div>
<div id="sectionB"></div>
<div id="sectionC"></div>

关于html - 如何在 css 中将屏幕划分为这些 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9986145/

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