I've constrained the height of an area of text within a thumbnail box in Bootstrap, but in cases where the title is two or more lines, it cuts the last line of the text vertically in half. See here:
http://www.bootply.com/zBXG6in5R5
Since the text box has two font sizes (larger for the title and smaller for the description, which will be dynamic and vary in length), setting the line height will not help. Overflow:hidden does not hide full lines of text, just the part that overflows. Adding text-overflow: ellipsis or like does not stop the half-line from showing up, either.
I have reviewed both of these previous posts, but they don't seem to provide an answer that works for my case:
I have mentioned Bootstrap in case there is a solution anyone has found in using their thumbnail class, but it's really a more general question. Is there any way to stop chopped line-heights from happening, preferably in CSS?
Thanks!
EDIT: for those who don't want the bootply link, this is my CSS:
.container {
margin-top: 20px;
}
.thumbnail .caption h3 {
margin-top: 8px;
margin-bottom: 8px;
}
.thumbnail-text {
overflow: hidden;
height: 160px;
margin-bottom: 10px;
}
And HTML:
<div class="col-sm-4 col-md-3">
<div class="thumbnail">
<img src="http://lorempixel.com/300/160/animals/">
<div class="caption">
<div style="clear: both;"></div>
<div class="thumbnail-text">
<h3>This Title is Two Lines Long</h3>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore</p>
</div>
</div>
</div>
</div>