Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reduce dataTable tr height

I am using dataTable jquery plugin.
I need to reduce the height of the rows, how can I do it? (I need a fixed height)

I tried:

.dataTables tbody tr {
    min-height: 35px; /* or whatever height you need to make them all consistent */
}

JSFiddle

like image 324
Nk SP Avatar asked Sep 02 '26 17:09

Nk SP


1 Answers

tr don't have height.

You'll have to apply the height to its tds

Click here to see the fiddle

like image 114
Mysteryos Avatar answered Sep 05 '26 06:09

Mysteryos