我有一个网格由DIV的固定宽度和1像素的边框。现在两个DIV的触摸相邻的边界变成2px,显然。
如何在整个网格中获得1px边框?
这就是我的意思:
解决方法
边界崩溃属性有帮助吗?
The border-collapse property sets whether the table borders are collapsed into a single border or detached as in standard HTML.
见:http://www.w3schools.com/cssref/pr_border-collapse.asp
table#myTable { border-collapse:collapse; }