Reputation: 33
When one of my rows is wider than the table it is going onto the next line, but the next row is also being displayed there. What setting/property can i change in CSS to ensure multiple rows arent being displayed on the same line, when they are wider than the table?
Upvotes: 1
Views: 1169
Reputation: 16858
Without seeing any example HTML / CSS, try setting overflow: hidden;
on your affected table rows.
Upvotes: 1