我試圖在圖片上放置一些文字,但我不想設置background-image
。將文字放在圖片上以適應響應頁面
我創建了一個jsfiddle來說明我做了什麼,並使用了bootstrap3。
在移動的大小,它可以顯示優良像
但是,如果我調整瀏覽器的寬度,它將被打破。
HTML
<div class="col-xs-12 visible-sm-block visible-xs-block" style="text-align: center;">
<p class="competion_text">
This is inside the competiontion Box!
<br> Second line
<br> Third line
</p>
<img src="http://i.imgur.com/NajXOdH.png">
</div>
CSS
.competion_text {
text-align: center;
position: relative;
top: 252px;
left: 7px;
max-width: 225px;
color: #FFCF83;
font-size: 10pt;
}
謝謝,但'margin:0 auto是什麼意思? –
將元素居中到父元素。很高興我幫助:) –
謝謝,我知道了 –