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

border-radius with box-shadow inset pixelized / rugged

如果你看不出这个问题,那么请试着看看这个codepen,你应该明白我的意思了。

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

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

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 错误。我无法为您的案例提出解决方案。如果您希望尽快修复此问题,请在错误跟踪器上投票!