gpt4 book ai didi

html - CSS:不同屏幕分辨率的方形按钮

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

您好,想将按钮显示为正方形。如果我使用像素比屏幕分辨率有问题。如果我使用百分比,则比例不正确

你知道怎么做吗?

.serviceButton{
position:absolute;
left: 20%;
top: 20%;
width: 300px; //if I use this than the sqaure is small
height: 300px; // in big screen resolutions
}


<div>
<button type="button" class="serviceButton">Services</button>
</div>

最佳答案

有一篇关于此的精彩博文 here .它可能会满足您的需求,它甚至会在您缩小窗口时缩小。

这是您需要的 html:

<div class="box square"> 
<div class="content">Aspect ratio of 1:1</div>
</div>

并将其添加为您的 CSS:

.box {
position: relative;
width: 50%; /* desired width */
}
.box:before {
content: "";
display: block;
}
.square {
padding-top: 100%; /* Play with this value for different ratios */
}
.content{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}

关于html - CSS:不同屏幕分辨率的方形按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33564814/

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