Edge 浏览器中意外的 1 像素边距

Unexpected 1 pixel margin in Edge browser

我在固定容器中的 div 下有意外的 1px 边距。此问题仅出现在 Edge 中(可能也出现在 IE 中)。经过一些测试后,我能够用一个简单的例子重现这个错误。

这张图片,您可以复制下面的 运行 片段,由固定 div 内的 3 个正方形 div 组成。火狐

在 Edge 中,您可以通过禁用容器 div 中的 属性 top: 50% 或禁用容器中的 border-*-right-radius: 6px 来 "fix" 这个问题divs 在里面。当然,这不是解决方法,因为我需要这两个属性才能有效地实现此设计。

我该如何解决这个问题?我尝试添加与背景颜色相同的边框,但背景不是不透明的。

编辑:如果您不能立即在 IE/Edge 中看到它,请尝试 select 容器 div 并慢慢增加 top 属性。在IE11中,从5%改成6%,问题又明显了。

.box {
  background-color: rgba(0,0,0,0.15);
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.2);
}
.box:hover {
  background-color: rgba(50,50,100,0.15);
}
.box:first-child {
  border-top-right-radius: 6px;
  border-top: 1px solid rgba(0,0,0,0.2);
}
.box:last-child {
  border-bottom-right-radius: 6px;
  border-bottom:1px solid rgba(0,0,0,0.2);
}

.main {
  width: 70px;
  position: fixed;
  left: 0;
  top: 5%;
}
<div class="main">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>

尝试在父级上使用边框 div:http://jsfiddle.net/gtf0fa8n/1/

父级的边框半径不会阻止 IE 中的内部 divs 渲染

.main {
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-left: 0;
    border-radius: 0 6px 6px 0;
    overflow: hidden;
}

.box {
    background-color: rgba(0, 0, 0, 0.3);
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.box:hover {
    background-color: rgba(50,50,100,0.15);
}

只需在底部给出1px的相同颜色的boxshadow即可。

box-shadow: #2a2e37 0px 1px 0px;