次のコードを使用して、キャプションを画像の右下に揃えています。コードはうまく機能します。
ピクチャ コンテナ (.picture クラス)の最小幅を指定せずに書き直すことができるかどうか疑問に思っていました。幅がない場合、ブラウザー ウィンドウのサイズを変更すると、キャプションが下に移動します。
<div class="picture">
<img src="image.jpg">
<div class='captioning'>
<div class='title'>text</div>
<div class='caption'>text</div>
</div>
</div>
.picture {
position: relative;
overflow: hidden;
min-width: 1200px;
}
.picture img {
float: left;
}
.picture .captioning {
float: left;
width: 150px;
margin: 0 0 0 15px;
}
.picture .captioning .caption {
position: absolute;
bottom: 0;
}
.picture .captioning .title {
position: absolute;
bottom: 0;
}
何か案は?
前もって感謝します