Tom
Tom

Reputation: 33

HTML row overlapping onto next?

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

Answers (1)

Phil.Wheeler
Phil.Wheeler

Reputation: 16858

Without seeing any example HTML / CSS, try setting overflow: hidden; on your affected table rows.

Upvotes: 1

Related Questions