Issue
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 */
}
Solution
tr
don't have height.
You'll have to apply the height
to its td
s
Answered By - Mysteryos
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.