When using CSS overflow: hidden , I\'ve often found that the last line of text gets partially cut-off. Is there a way to prevent this so that any partial lines do not show
that worked for me:
.wrapper_container{ width: 300px; height: 200px; overflow: hidden; } .wrapper{ -webkit-column-width: 300px; column-width: 300px; height: 100%; }