我需要使用CSS居中的圖像內的按鈕,但我不能夠相對於中間的按鈕圖像圍繞按鈕圖像與CSS
這裏的左上角是頁面
HTML文件:
<div class="content">
<img class="mainImage" src="http://mintywhite.com/wp-content/uploads/2012/10/fond-ecran-wallpaper-image-arriere-plan-hd-29-HD.jpg" alt="logo">
<div id="startButton">
<button onclick="hide()" width="40px">Start Now</button>
</div>
</div>
CSS:
.content{
position: relative;
}
img.mainImage{
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
width: auto;
height: auto;
max-width: 400px;
max-height: 500px;
visibility: visible;
z-index: 1;
}
#startButton{
position: absolute;
margin-left: auto;
margin-right: auto;
top: 0px;
left: 0px;
z-index: 2;
}
body{
background-image: url('http://www.psdgraphics.com/file/colorful-triangles-background.jpg');
margin: 0;
padding: 0;
}
我需要的東西,它如同按鈕 http://www.whatsapp.com/
「下載Whataspp」在這裏我需要就像一個當你一個按鈕重新調整窗口大小,即它不具有相對移動其背景圖像
http://jsfiddle.net/3j5w5v7f/2/ ..這是你在找什麼? ..或讓我知道你想要按鈕的位置是 – 2014-11-03 21:58:21
如果你想使用座標來居中它,那麼它就不是你需要的東西http://jsfiddle.net/3j5w5v7f/5/ – waplet 2014-11-03 22:01:09
你能澄清嗎?你想讓開始按鈕相對於#mainImage定位嗎? – hungerstar 2014-11-03 22:01:36