レスポンシブブログサイトに2列のレイアウトを使用しています。左側の列には、列の幅に合わせて拡大縮小された画像が使用され、右側の列には、ブログ投稿からのテキストの抜粋が含まれています。
ブラウザの幅が狭くなったときに、右側の列のテキストの段落の高さを左側の列の画像の高さと一致するように制限する方法についてのアイデアはありますか?
text-overflow:ellipsisを使用して、右側のdivのテキストのオーバーフローを処理する予定です。
下の画像の前後の例。
これがHTMLであり、ブラウザウィンドウのサイズが縮小されたときにサイズを変更するために画像のサイズを設定するために使用したCSSです。
<div class="row blogpost">
<div class="sevencol">
<img src="img/greybox.png">
</div>
<div class="fourcol last>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source.
</p>
<a class="readMore" href="#">Read More...</a>
</div>
.blogpost .sevencol img {
zoom: 2;
margin: auto;
height: auto;
max-height: 100%;
width: auto;
max-width: 100%;
margin-top: 8px;
}