gpt4 book ai didi

html - 优先考虑div宽度

转载 作者:太空宇宙 更新时间:2023-11-04 11:07:05 27 4
gpt4 key购买 nike

我使用固定 width

下面的 div
<div width="715">
<div style="width:40%;float:right">
</div>
<div style="width:5%;float:right">
<img src="x.png" />
</div>
<div style="width:15%;float:right">
</div>
<div style="width:40%;float:right">
</div>
</div>

715 的 5% = 35

我的问题是 x.png 大于 35 (width: 80)

您推荐什么方法来确定 div width 的优先级?

最佳答案

此标记 <div width="715">已弃用,因此试图了解您想在此处实现的目标是基于您的代码的片段:

片段

.wrap {
width: 715px
}
div[class*="div-"] {
float: right;
height: 200px;
}
.div-one {
width: 40%;
background: red
}
.div-two {
width: 5%;
background: green
}
.div-three {
width: 15%;
background: blue
}
.div-four {
width: 40%;
background: yellow
}
img {
display: block;
height: auto;
max-width: 100%
}
<div class="wrap">
<div class="div-one"></div>
<div class="div-two">
<img src="http://lorempixel.com/100/100" />
</div>
<div class="div-three"></div>
<div class="div-four"></div>
</div>

关于html - 优先考虑div宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33892914/

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