我想要一個帶有文本的div在圖像上方顯示。你可以(種)看看我在這裏試圖做什麼:http://innerwestadv.com/odom/在右下角的聯繫方式。文字出現在圖像上方,但背景顏色顯示在下方。帶有Css背景顏色的文本在圖像上
下面是HTML:
<div class="visible-all-devices ftr-widget">
<h2>Contact</h2>
<div class="textwidget">
<p><a href="http://innerwestadv.com/odom/contact/"><img width="328" height="254" alt="map" src="http://innerwestadv.com/odom/wp-content/uploads/2015/05/map.jpg" class="aligncenter size-full wp-image-121"></a></p>
<div class="contact-box">
<h4>One Day One Million</h4>
<p>(775)359-3000 x 129<br>
985 Damonte Ranch Parkway<br>
Suite 310<br>
Reno, NV 89521
</p>
</div>
</div>
</div>
而CSS:
.contact-box {
background-color: rgba(2, 54, 110, 0.8) !important;
margin: -140px auto 0;
padding: 10px;
width: 80%;
}
我怎樣才能框出現在圖像上面?