画像の横にある青い div の真ん中に 2 つのリンク ボタンのみを表示したいという問題があります。
私はこのようなものが欲しい
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があります