table表格添加border
1.之前一直头疼添加表格的边线,包括上线左右,在此提供一种比较靠谱的添加方式做一下记录,顺便提供参考。
直接上代码:
table, table th, table td{ border: 1px solid #eee; } table{ border-collapse: collapse; }
2.这种方法可以整体给表格和th td单元格添加边线,需要单独定义的地方可以指定具体样式:
比如:
table th{ border-top-color: red; }