天天看点

table thead tr设置表头背景色未完全覆盖的问题

参考文章:http://blog.chinaunix.net/uid-22414998-id-2876249.html

我想要的效果如下:

table thead tr设置表头背景色未完全覆盖的问题

实际却如下:

列头之间的那条白线很是不爽

table thead tr设置表头背景色未完全覆盖的问题

解决方法,给table设置collapse即可:

table

    {

        ...

        border-collapse:collapse; 

    }