**CSS compatibility for multicols:** http://www.w3schools.com/css/css3_multiple_columns.asp -> Apply with media querries Workaround onceptual Problem of multicols with long text on a website: Put a "long" class on all div and p elements with more than 50 characters: <code> $("p, div").filter(function(){ return $(this).text().length >=50; }).addClass('long'); </code>