0
這是我在stackoverflow上的第一篇文章!用bootstrap重疊圖片上的文字
我想重疊包含圖像與Twitter引導的div上的文本。我在一個帶有PSD的網站上工作,我必須製作一些文本的視差,有時半部分重疊一些圖像。
但我聽說z-index不適用於bootstrap,是嗎?
我嘗試過使用縮略圖類的技巧,但它似乎並不是一個好的解決方案。我發佈了我的代碼,希望有人能幫助我。謝謝。
.thumbnail {
position:relative;
}
.thumbnail_legend {
background: none repeat scroll;
opacity: 1;
left:0;
position: absolute;
}
.organic{
margin-top:3%;
}
.organic img{
width: 100%;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<div class="organic container">
<div class="row">
<h2 class ="col-xs-2 col-xs-offset-2 col-sm-2 col-sm-offset-2 col-md-2 col-md-offset-2 col-lg-2 col-lg-offset-2">ORGANIC
</h2>
<div class="col-xs-7 col-sm-7 col-md-7 col-lg-7 thumbnail"><img src="elem/photo-1-idea.jpg" alt="organic infusions"/>
</div>
<p class="col-xs-4 col-xs-offset-2 col-sm-4 col-sm-offset-2 col-md-4 col-md-offset-2 col-lg-4 col-lg-offset-2 thumbnail_legend"> Nos infusions en tige offrent une nouvelle façon de consommer les plantes issues de terroirs exceptionnels.
</p>
</div>
</div>