我遇到了問題,我只想在圖像旁邊的藍色div中間顯示2個鏈接按鈕。aligning div中的按鈕
我想是這樣的
link1 {space} link2
{space}
link3 {space} link 4
目前就是這個樣子
link1
link2
link3
link4
這裏是我的代碼 HTML
<div class="list-wrapper">
<div class="my-background">
<div class="div1" style="float:left;"> </div>
<span class="buttons">
<a class="buttonStyling" href="test.com"><b>Link 1</b></a>
<a class="buttonStyling" href="test.com"><b>Link 2</b> </a>
<a class="buttonStyling" href="test.com"><b>Link 3</b> </a>
<a class="buttonStyling" href="test.com"><b>Link 4</b> </a>
</span>
</div>
CSS
.my-background{
background-color: #8af0fc;
height: 204px;
}
.div1 {
height: 205px;
background: url(http://www.dynamicdrive.com/dynamicindex4/lightbox2/horses.jpg) no-repeat;
background-size: 435px;
font-weight: normal;
font-family: futura, arial, sans-serif;
text-align: center;
width:256px;
margin-bottom: -20%;
}
.buttons .buttonStyling{
display: block;
height: 40px;
text-align: center;
line-height: 40px;
width: 35%;
float:right;
}
.buttonStyling {
background: rgb(255, 255, 255); /* Old browsers */
background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 33%, rgba(225, 225, 225, 1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(225, 225, 225, 1)));
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 33%, rgba(225, 225, 225, 1) 100%);
background: linear-gradient(top, rgba(255, 255, 255, 1) 33%, rgba(225, 225, 225, 1) 100%); color: #333;
}
這裏的jsfiddle
你想在四個角上的按鈕?你想讓它們之間的特定間距居中在div區中間嗎? –
你對div1的計劃是什麼?現在它只是創建一個毫無意義的邊際,是否應該包含按鈕?你有足夠的額外樣式,不清楚你的實際意圖是什麼。 –
我仍然困惑於你想要的東西,左邊的圖像,右邊的藍色方塊和藍色的2個圖像,圖像上有2個按鈕?對於你想要最終的佈局做一些更具體的描述 –