CSS:如何将表单元格边距设置为0?
这个问题在这里已经有了答案:
试试这个https://jsfiddle.net/2Lzo9vfc/84/
table {
border-collapse: collapse;
border-spacing: 0;
}
你缺少填充:0px; 为了
test,th,td {}
#test, th, td {
border:1px solid black;
margin:0px;
padding:0px;
}
链接地址: http://www.djcxy.com/p/16943.html