I use following css in my table:
.lh1 {
line-height: 50px;
}
<table class="table table-bordered lh lh1">
..
..
..
</table>
You need to do it like this.
CSS
.lh1 > tbody > tr > td {
line-height: 50px;
}
your CSS is not overwriting the bootstrap CSS. Here is the demo