IE (11) improper handling of CSS multi-columns?
I'm building a 2-column layout using CSS multi-columns, and I want to give a hint as to where to break the columns. So I say: columns: 2 on the container, and break-before: column on the child where I want the break. IE (11 in my case) decides to split my content into 3 columns and overflows to the right of its box :-( Chrome (using the prefixed alternatives -webkit-columns:2 and -webkit-column-break-before: always ) behaves nicely. Fiddle at: http://jsfiddle.net/jDecq/6/ Am I doing something wrong here ? Is this a misbehavior of IE ? Any workaround suggestions ? As I am myself very interested