当前位置 : 主页 > 网络编程 > JavaScript >

table表格1px边框用css实现

来源:互联网 收集:自由互联 发布时间:2021-06-28
table边框融合效果 //table中设置如下属性使td留下1px间距显示background-color ...... .table{ background:#dcdcdc; td{ background: #ffffff; }}
table边框融合效果
//table中设置如下属性使td留下1px间距显示background-color

 
  ......
 
.table{
  background:#dcdcdc;
  td{
    background: #ffffff;
  }
}
网友评论