gpt4 book ai didi

html - Div容器的位置

转载 作者:太空宇宙 更新时间:2023-11-03 23:30:43 25 4
gpt4 key购买 nike

我有以下 HTML 代码:

<div class="item">
<div class="pageheader">
Header
</div>
<div class="info">
Created on...
</div>
<div class="image">
Image
</div>
<div class="more">
Read More...
</div>
</div>

我不能改变元素的顺序并且想在没有绝对位置的情况下以这种方式定位它:

Div Position

有没有办法做到这一点?

最佳答案

编辑:

.item{

width: 400px;
height: 100px;
border: 2px solid black;
position: relative;
}

.image{

float: left;
border-right: 2px solid black;
height: 100px;
width: 100px;

}

.pageheader{

float: right;
border-bottom: 3px solid black;
height: 30px;
width: 298px;
top: 33px;
left:102px;
position: absolute;
}

.info{

float: right;
border-bottom: 3px solid black;
height: 30px;
width: 298px;
top: 0px;
left:102px;
position: absolute;
}

.more{

float: right;
height: 30px;
width: 298px;
top: 66px;
left:103px;
position: absolute;
}

CSS 解决方案,现在应该可以工作了。

关于html - Div容器的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25442606/

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