Why do Firefox and Opera ignore max-width inside of display: table-cell?

What you need to do is to put your wrapper div (the one with display: table-cell) inside another div that has display: table and table-layout: fixed. That makes both Firefox and Opera respect the max-width rule.

See this example on jsFiddle.

Leave a Comment