使用
margin-right: -1px;
margin-bottom: -1px;
可以合并重复的边框
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
.item {
float: left;
border: 1px solid red;
margin-right: -1px;
margin-bottom: -1px;
width: 158px;
height: 180px;;
}
.wrapper {
width: 400px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="item">
</div>
<div class="item">
</div>
<div class="item">
</div>
</div>
</body>
</html>