gpt4 book ai didi

android - 边框在 Android 4+ 和 iOS 6.0 上不以 border-radius flex

转载 作者:太空宇宙 更新时间:2023-11-03 18:13:50 26 4
gpt4 key购买 nike

我有一个带双边框的圆圈。内部白色边框由 border 属性设置。外部灰色边框由 box-shadow 属性设置。在 Android 4+ 和 iOS 6.0 上,外边框正确 flex 但内边框不正确。

正确:

enter image description here

不正确:

enter image description here

代码如下:

-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;

-webkit-border-radius: 50%;
border-radius: 50%;

-webkit-box-shadow: 0 0 0 2px #b2b0b0;
-moz-box-shadow: 0 0 0 2px #b2b0b0;
box-shadow: 0 0 0 2px #b2b0b0;

border: 3px solid white;
display: block;
height: auto;
margin: 0 auto;
max-width: 100%;

为什么 border-radius 会正确影响 box-shadow 而不是 border

最佳答案

我想到了这个解决方法:

将元素包裹在一个div中:

<div class="double-border">
<img />
</div>

并将双边框应用于包装器:

.double-border {

-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;

-webkit-border-radius: 50%;
border-radius: 50%;

-webkit-box-shadow: 0 0 0 2px #b2b0b0;
-moz-box-shadow: 0 0 0 2px #b2b0b0;
box-shadow: 0 0 0 2px #b2b0b0;

border: 3px solid white;
height: auto;
margin: 0 auto;
max-width: 100%;
overflow: hidden;
}

关于android - 边框在 Android 4+ 和 iOS 6.0 上不以 border-radius flex ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23163412/

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