gpt4 book ai didi

html - expand-div-to-take-remaining-width - 更改顺序

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

我正在尝试执行以下示例中显示的操作:http://jsfiddle.net/A8zLY/5/但是div的顺序应该相反,我首先需要左边的div(我需要 Angular 色为width:auto;的div在第一位):

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

最佳答案

通过更改标记中 div 的顺序实现相同布局的一种方法是使用绝对定位:

.container {
width:600px;
height:200px;
border:1px solid;
position:relative;
}
.left {
margin-left:200px;
height:200px;
background:red;
}
.right {
height:200px;
width:200px;
background:blue;
position:absolute;
top:0; left:0;
}
<div class="container">
<div class="left"></div>
<div class="right"></div>
</div>

关于html - expand-div-to-take-remaining-width - 更改顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26970025/

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