我正在尝试创建一个响应迅速的宝丽来相框。问题是标题不会粘在底部边框上,它只是漂浮在图像上。
如果我使用像素而不是百分比它可以工作,但不是其他明智的。有任何想法吗 ?
HTML
<div class="imageContainer">
<img src="http://photogallery.indiatimes.com/beauty-pageants/miss-india/rochelle-maria-raos-photo-shoot/photo/16651703/Miss-India-International-Rochelle-Maria-Rao-during-her-photo-shoot-.jpg" />
<p> Title</p>
</div>
CSS
.imageContainer {
position: relative;
width: 25%;
padding-bottom: 25%;
float: left;
height: 0;
margin-right:10px;
border:10px solid #e3e3e3;
border-bottom:30px solid #e3e3e3;
}
.imageContainer img {
width: 100%;
height: 100%;
position: absolute;
left: 0;
}
.imageContainer p{
position:absolute;
}