When I place text in a container with a set height and hidden overflow, the final line that could fit sometimes gets cut off. Check out this example on jsFiddle or view the image for reference.
Is there a way to prevent the last line from being partially visible when this happens?
The issue arises when I have columns of dynamic height (100% of the parent's height, which is 80% of the body's height) containing blog post text. I want to display a "read all" button at the bottom if there is overflowing text (which is easy to determine). Currently, it looks unappealing with half-rendered text above the button.
I cannot remove the overflow because the columns need to end before reaching the navigation section at the bottom of the page.