By default, the height of the rows in my table varies to match the contents.
I would like to fix the row height so that I get a more uniform table, and don’t waste valuable space on my page.
If I set
style=“height: 30px;” on the tr
then the row height is set to 30 if it was previously less than 30, but if it was previously greater than 30 then it stays unchanged.
How can I force the row height to be 30 regardless of content?
Here is sample of my page
As you can see, there is a lot of white space around the numbers which I want to reclaim. (I have set padding to zero).