Twitter bootstrap 3 使用引导将列设为右填充和左填充0

Twitter bootstrap 3 使用引导将列设为右填充和左填充0,twitter-bootstrap-3,Twitter Bootstrap 3,目标: 将特定列设为右填充,将左填充设为值0。表中列的其余部分不应受到影响 问题: 我尝试过不同的解决方案,但效果不太好 有什么想法吗 谢谢大家! Demo: http://jsbin.com/kinoqobuno/edit?html,output 您试图更改thead>td,但使用了thead>th!请将css更改为以下内容: #ddd thead tr th:nth-child(1){ padding-right: 0 !important; padding-left: 0 !i

目标:
将特定列设为右填充,将左填充设为值0。表中列的其余部分不应受到影响

问题:
我尝试过不同的解决方案,但效果不太好

有什么想法吗

谢谢大家!

Demo:  http://jsbin.com/kinoqobuno/edit?html,output

您试图更改thead>td,但使用了thead>th!请将css更改为以下内容:

#ddd thead tr th:nth-child(1){
  padding-right: 0 !important;
  padding-left: 0 !important;  
}