CSS边框样式

时间:2014-05-19 01:38:02

标签: html css

关于我的CSS有问题,我有一个<table>,当我把CSS放入其中时,我把它放在边框上,就像这样

table, th, td, tr {
    border: thin 1px solid black;
}

我有双实线,看起来像这样

enter image description here

我需要的是一个中间没有空格的表。我怎么能在CSS中做到这一点?感谢。

1 个答案:

答案 0 :(得分:4)

使用border-collapse

table {
  border-collapse: collapse;
}
相关问题