如何在瀏覽器窗口重新調整大小時,讓這些圖像上的標題文字四處移動?我的實現很快捷,我需要一種方法來保持文本在窗口大小調整時不會滑動。如何在響應圖像上垂直居中文本?
<div class="row">
<div class="col-md-6">
<img src="http://placekitten.com/600/375" class="img-responsive" />
<h2 class="homeImageLink">
<span>Caption Text</span>
</h2>
</div>
<div class="col-md-6">
<img src="http://placekitten.com/600/375" class="img-responsive" />
<h2 class="homeImageLink">
<span>Caption Text</span>
</h2>
</div>
</div>
.homeImageLink {
position: absolute;
top: 110px;
left: 0;
text-align: center;
width: 100%;
}
.homeImageLink span {
color: red;
font-weight: 300;
font-style: italic;
text-transform: uppercase;
letter-spacing: 15px;
pointer-events: none;
}
您是否嘗試過使用上的跨度COL-MD-偏移4 COL-MD-4級的? – JanR
@JanR不,我沒有 - 我該如何處理垂直居中呢? – drewwyatt
是的,從頭開始,它不會工作,我只是意識到你正在嘗試做什麼,它不會用於覆蓋文本 – JanR