gpt4 book ai didi

css - 视网膜半像素边界半径

转载 作者:行者123 更新时间:2023-11-28 11:40:01 26 4
gpt4 key购买 nike

当使用视网膜显示器时,是否可以像这样使用半像素边界半径:

#box {
height: 3px;
width: 100px;
border-radius: 1.5px;
}

我是在我的视网膜 iPhone 4 上做的,它显示为 1px 的边框半径。任何原因和/或修复?

最佳答案

边框尺寸必须是整数像素(所以 1.5 不会飞)。但是你可以使用 spread radius 伪造它..

野外有很多例子,包括this one :

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {

button {
border:none;
padding:0 16px;
box-shadow: inset 0 0 1px #000,
inset 0 1px 0 #75c2f8,
0 1px 1px -1px rgba(0, 0, 0, .5); }

}

关于css - 视网膜半像素边界半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19614477/

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