width
,height
,margin
可以具有尺寸,又名塊級元件的元件上才起作用。
所以,你需要的display: block
,或者display: inline-block
旁邊的屬性添加到您的<a>
讓他們給對方,你可以兩件事情:(通知,我修復代碼中的一些CSS問題)
浮子:
<p class="clearfix">
<a href="#" class="reply">foo</a>
<a href="#" class="reply">bar</a>
</p>
CSS:
.clearfix:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
a.reply {
padding: 20px;
background-color: #555;
border-radius: 4px;
margin-top: 10px;
width: 100px;
height: 50px;
margin-right: 15px;
float: left;
}
a.reply:hover {
background-color: #fff;
}
顯示inline-block的
<p>
<a href="#" class="reply">foo</a>
<a href="#" class="reply">bar</a>
</p>
CSS:
a.reply {
padding: 20px;
background-color: #555;
border-radius: 4px;
margin-top: 10px;
width: 100px;
height: 50px;
display: inline-block;
margin-right: 15px;
}
a.reply:hover {
background-color: #fff;
}
你能提供一些HTML,也許一個小提琴嗎? –