目标:
创建一个特定的列,使padding和padding的值为0。表中列的其余部分不应受到影响
问题:
我尝试过不同的解决方案,但效果不是很好。
有什么想法吗?
谢谢!
Demo: http://jsbin.com/kinoqobuno/edit?html,output发布于 2017-06-20 21:01:37
你试图改变thead > td,但是你使用了thead > th!请将您的css更改为以下内容:
#ddd thead tr th:nth-child(1){
padding-right: 0 !important;
padding-left: 0 !important;
}https://stackoverflow.com/questions/44653662
复制相似问题