gpt4 book ai didi

html - CSS div定位问题

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

我不知道如何构建这个简单的布局。

这是我想要的样子:

enter image description here

...这是我目前所拥有的:

http://cssdesk.com/vQ3qr

如何获取右上角的黄色div?

HTML:

<div class="gray-wrapper">
<div class="red">centered</div>
<div class="yellow">top right corner</div>
<div class="aqua">100% width</div>
</div>

CSS

.gray-wrapper{
width:500px;
height:200px;
background:gray;
border:4px solid gray;
}
.red{
width:200px;
height:100px;
margin:0 auto;
background:red;

}
.yellow{
width:50px;
height:100px;
float:right;
background:yellow;
}
.aqua{
width:100%;
height:100px;
background:aqua;
}

最佳答案

只需将 yellow div 放在 html 的第一位即可。

<div class="gray-wrapper">
<div class="yellow">top right corner</div>
<div class="red">centered</div>
<div class="aqua">100% width</div>
</div>

演示在 http://cssdesk.com/KYRTT

关于html - CSS div定位问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17490924/

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