I limited the height of the text area in the thumbnail window in Bootstrap, but in cases where the title consists of two or more lines, it cuts the last line of text vertically in half. See here:
http://www.bootply.com/zBXG6in5R5
Since the text field has two font sizes (more for the title and less 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, but only the part that overflows. Adding text overflow: ellipsis or the like does not stop displaying half a line.
I looked through both of these previous posts, but they don't seem to give an answer that works for my case:
I mentioned Bootstrap in case there is a solution that anyone has found using their thumbnail class, but this is really a more general question. Is there a way to stop shredded height lines, preferably in CSS?
Thank!
EDIT: for those who don't need a 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>
source
share