我正在嘗試創建一個在左側,右側,然後是之間的標題按鈕的div。一些看起來是這樣的:在h2上添加的保證金
但我發現了這樣的事情:
你可以看到有添加保證金,我想不出爲什麼。我已經檢查了我所能做的一切,但我無法弄清楚我做錯了什麼。 (據我所知,h2
爲50%,我做了這個嘗試,並找出原因,右鍵正在被推下。)
這裏是我的HTML:
<div class="day_buttons">
<button id="previous_day"></button>
<h2 id="zip_h2">What day and time would you like your stuff picked up?</h2>
<button id="next_day"></button>
</div><!--end nav_buttons-->
這裏是CSS來去用它:
#next_day
{
float: right;
background: transparent url(./images/icons/forward_button.gif) no-repeat top left;
width:4em;
height:4em;
z-index:5;
}
#previous_day
{
position:relative;
top:0;
left:0;
float: left;
background: transparent url(./images/icons/backward_button.gif) no-repeat top left;
width:4em;
height:4em;
z-index:5;
}
.day_buttons
{
height:3em;
width:100%;
display:inline-block;
}
#zip_h2
{
width: 50%;
margin:0px !important;
overflow:hidden;
}
這是爲那些誰需要它小提琴:http://jsfiddle.net/tK72Z/
你可以做小提琴嗎? –
@JackWilliams我加了小提琴。 – BlackHatSamurai
@Blaine如果將左側按鈕的位置設置爲絕對 – Varun