div 左侧或右侧的 3px 双边框,但在 chrome 中,它在边框顶部留下 1px 的间隙。我已经尝试广泛查看这是一个浏览器错误还是某种解决方案。
如果您在 firefox/ie 中查看代码,您会看到连续的黑条,在 chrome 和我的手机/平板电脑上,我会在每个 div 的顶部看到 1px 的间隙,这会破坏黑条
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type="text/css">
.test {
height: 100px;
width: 100px;
border-right: 3px double #c7c7c7;
border-left: 3px double #c7c7c7;
background-color: #06F;
padding: 0px;
margin: 0px;
border-bottom-style:
}
</style>
</head>
<body>
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
</body>
</html>