gpt4 book ai didi

javascript - 将 div 调整为容器中最大可能的正方形

转载 作者:太空狗 更新时间:2023-10-29 15:18:23 24 4
gpt4 key购买 nike

<分区>

如何使用 CSS 将 div 的大小调整为容器内最大的正方形?如果用 CSS 做不到,用 JavaScript 怎么办?

如果容器有 height > width 我希望正方形的大小为 width x width。如果容器有 width > height,我希望正方形的大小为 height x height

当容器的尺寸改变时, child 的尺寸应该相应地调整。

我找到了 this answer有助于保持 child 的纵横比。当容器的宽度大于高度时,此方法不起作用,因为子项会溢出父项,如以下代码段所示。

.flex {
display: flex;
}

.wide,
.tall {
flex: none;
border: 3px solid red;
}

.wide {
width: 150px;
height: 100px;
}

.tall {
width: 100px;
height: 150px;
}

div.stretchy-wrapper {
width: 100%;
padding-bottom: 100%;
position: relative;
background: blue;
}

div.stretchy-wrapper>div {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
color: white;
font-size: 24px;
text-align: center;
}
<div class="flex">
<div class="wide">
<div class="stretchy-wrapper">
<div>Wide container</div>
</div>
</div>
<div class="tall">
<div class="stretchy-wrapper">
<div>Tall container</div>
</div>
</div>
</div>

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