我想排列多個按鈕並保持響應式設計。 你能告訴我我在做什麼錯嗎?排列並排按鈕並排
這裏是的jsfiddle鏈接:jsfiddle
.round-button {
width: 25%;
}
.round-button-circle {
width: 100%;
height: 0;
padding-bottom: 100%;
border-radius: 50%;
border: 10px solid #cfdcec;
overflow: hidden;
background: #4679BD;
box-shadow: 0 0 3px gray;
}
.round-button-circle:hover {
background: #30588e;
}
.round-button a {
display: block;
float: left;
width: 100%;
padding-top: 50%;
padding-bottom: 50%;
line-height: 1em;
margin-top: -0.5em;
text-align: center;
color: #e2eaf3;
font-family: Verdana;
font-size: 1.2em;
font-weight: bold;
text-decoration: none;
}
<div class="round-button">
<div class="round-button-circle">
<a href="http://example.com" class="round-button">Button!!</a>
<a href="http://example.com" class="round-button">Button!!</a>
</div>
</div>
你的意思並排 –
側要通過側 –
兩個圓面是的,我希望他們並肩 – emre