正确给table加边框

该文章解决用table标签画表格时,用border属性产生的表格重合线加粗的问题。

css部分:

table,table tr th, table tr td {
      border:1px solid #a8aeb2;
      padding: 5px 10px;
}
table {
      min-height: 25px;
      line-height: 25px;
      text-align: center;
      border-collapse: collapse;
} 

html部分:

姓名 性别 住址 电话
张三 深圳龙岗区 131313131313
张三 深圳龙岗区 131313131313

效果图如下:

正确给table加边框_第1张图片

你可能感兴趣的:(css)