CSS: Can you prevent overflow: hidden from cutting-off the last line of text?
You can use wrapper div and multi-column css: .wrapper { -webkit-column-width: 150px; //You can’t use 100% column-width: 150px; height: 100%; } Solution example: http://jsfiddle.net/4Fpq2/9/ Update 2017-09-21 In Firefox this solution still works but broken in Chrome. Recently Chrome started break column by small parts, also stop break content if you set height. In this http://jsfiddle.net/4Fpq2/446/ … Read more