gpt4 book ai didi

html - border-radius with box-shadow inset 像素化/粗糙

转载 作者:可可西里 更新时间:2023-11-01 14:46:11 26 4
gpt4 key购买 nike

如果您看不到这个问题,请尝试查看此 codepen ,到这里你应该明白我的意思了。

我尝试了几种方法来修复它。在下面的评论中,您可以看到其中之一。它似乎仍然在 适当的 borderdropped shadow 之间呈现 1px 粗糙的边框。

如果它依赖于浏览器渲染器那么它是一个错误吗?如何为所有现代 浏览器正确修复它。

html{
background-color: #554343;
}
div{
display: block;
width: 300px;
height: 300px;
margin: 0 auto;
border-radius: 50%;
border-width: 0; /* no result
border-width: 2px; // uncommented no result
border-style: solid;// uncommented no result even with inset*/
background-color: white;
box-shadow: inset 1px 1px 150px, inset -1px -1px 150px;
}
<div>
</div>

编辑:也尝试过这种方式但没有积极的结果:

html{
background-color: #554343;
}
.container{
display: block;
width: 300px;
height: 300px;
margin: 0 auto;
border-radius: 50%; /* tried 49.5% but it's not acceptable */
box-shadow: inset 1px 1px 150px #000, inset -1px -1px 150px #000;
}
.content{
position: relative;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: white;
z-index: -1;
}
<div class="container">
<div class="content">
</div>
</div>

最佳答案

https://code.google.com/p/chromium/issues/detail?id=442335

似乎打开了 Chrome 错误。我无法为您的案例提出解决方案。如果您希望尽快修复此问题,请在错误跟踪器上投票!

关于html - border-radius with box-shadow inset 像素化/粗糙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30164827/

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