Reputation: 598
I have a table with class .table .table-striped .table-bordered
now when I try to change the width of my second column it doesnt resize. I've tried width: 50%
and inline styling still no luck.
Upvotes: 1
Views: 1335
Reputation: 362300
Override it in your CSS like this:
.table tr td:nth-child(2) {width:50%;}
See example: http://bootply.com/60325
Upvotes: 2