gpt4 book ai didi

css - div 中的固定宽高比,无论屏幕如何

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

我有一个 div,无论屏幕尺寸和比例如何,我都希望保持 2:1 的纵横比。

这是我的选择(放弃之前的其他选项)

.mydiv{

background-color: red;
width: 100%;
position: absolute;
height: 50%;
}
<div class="mydiv">
this should be a fixed aspect ratio div
</div

我试过媒体查询和这个:https://www.w3schools.com/howto/howto_css_aspect_ratio.asp但这不是我要找的,因为有白色的填充空间

最佳答案

设置lefttop属性.mydiv0 并将 margin:0 设置为 body 以删除多余的空间。

堆栈片段

body {
margin: 0;
}

.mydiv {
background-color: red;
width: 100%;
position: absolute;
height: 50%;
left: 0;
top: 0;
}
<div class="mydiv">this should be a fixed aspect ratio div
</div

希望对您有所帮助!

关于css - div 中的固定宽高比,无论屏幕如何,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48258307/

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