html – CSS网格与1px边框

前端之家收集整理的这篇文章主要介绍了html – CSS网格与1px边框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个网格由DIV的固定宽度和1像素的边框。现在两个DIV的触摸相邻的边界变成2px,显然。

如何在整个网格中获得1px边框?

这就是我的意思:

http://jsfiddle.net/Before/4uPtj/

解决方法

边界崩溃属性有帮助吗?

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;
}
原文链接:https://www.f2er.com/html/232754.html

猜你在找的HTML相关文章