內我已成功地在地方得到正確的按鈕圖像,但現在的定位是全部關閉。中心按鈕背景圖像的容器
我希望它爲中心,因爲這圖片顯示:
我至今在這裏:http://codepen.io/anon/pen/snjCu。
我想圖像定位其列在中心內,使其正確就位時,屏幕越大。
任何幫助表示讚賞。
<footer>
<div class="banner">
<div class="container-fluid">
<div id="footer-controls" class="text-center">
<div class="col-xs-4"><i class="fa fa-picture-o"></i>
<span>GALLERY</span>
</div>
<div class="col-xs-4">
<a href="#" class="orange-button"></a>
</div>
<div class="col-xs-4"><i class="fa fa-file-text-o"></i>
<span>LEGAL</span>
</div>
</div>
</div>
</div>
</footer>
footer #footer-controls .orange-button {
background: url('http://i.imgur.com/lmB72tf.png') no-repeat;
width: 215px;
height: 210px;
background-size: 100%;
position: absolute;;
top: -50px
}
https://gist.github.com/anonymous/effef47b6bca698d07eb試試這個 – banditpanda