IE10 flexbox widths include padding, causing overflow. box-sizing: border-box doesn’t fix

I had similar problems with flexbox and box-sizing: border-box;. The latter one just doesn’t seem to work in IE. Width wouldn’t work in this case since padding will change it – but if you can use max-width, that should fix the problem.

Leave a Comment