gpt4 book ai didi

css - 具有 3 个 DIV 的结构

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

如何完成下面的结构?

structure example

这是我到目前为止得到的:

<style>
div{
border: 1px solid;
}
#d1{
width: 200px;
height: 150px;
}
#d2{
width: 200px;
height: 100%;
}
#d3{
width: 100%;
height: 100%;
}
</style>

<div id="d1">
1
</div>
<div id="d2">
2
</div>
<div id="d3">
3
</div>

谢谢!

最佳答案

您可以使用 absolute 定位以及设置 topbottomleft 来做到这一点对 根据需要像这样:

CSS

#d1, #d2, #d3  {
border: 1px solid #000000;
position: absolute;
}
#d1 {
top: 0;
height: 150px;
left: 0;
width: 200px;
}
#d2 {
top: 150px;
bottom: 0;
left: 0;
width: 200px;
}
#d3 {
top: 0;
bottom: 0;
left: 200px;
right: 0;
}

Demo

关于css - 具有 3 个 DIV 的结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15489045/

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