/ Published in: CSS
Stop your html tables overlapping other elements to the right. Fix the table with a fixed layout. You may also have to set overflow:hidden and word-wrap:break-word
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
.errorMessages { overflow: hidden; table-layout: fixed; width: 565px; word-wrap: break-word; }