Reputation: 3
Why are the columns overlapping when you decrease the browser width? Where's the point?
Link: http://lubuskiespa.pl/fitness/
Upvotes: 0
Views: 51
Reputation: 1201
Because it does not fit the table.
you must use
table {
word-break: break-all;
}
And for device with size smaller than 1000px, I advice use @media query. In your case,try it :
@media (max-width:1000px) {
.span_1_of_2 {
width: 100%;
}
}
Upvotes: 1