jumpelzg
jumpelzg

Reputation: 3

Overlapping columns in 2 cols RWD

Why are the columns overlapping when you decrease the browser width? Where's the point?

Link: http://lubuskiespa.pl/fitness/

Upvotes: 0

Views: 51

Answers (1)

lalala
lalala

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

Related Questions