I have some html tables where the textual data is too large to fit. So, it expands the cell vertically to accommodate for this. So now rows that have the overflow are twic
wrap the table in a div with class="container"
div.container { width: 100%; overflow-x: auto; }
then
#table_id tr td { white-space:nowrap; }
result