2
我是初學者,希望得到一些幫助,看看我犯了什麼錯誤。 我喜歡這樣,名爲「經銷商」和「私人派對」的最後一個按鈕浮在圖片左側的iPhone圖片旁邊。 在此先感謝按鈕在圖像旁邊浮動的按鈕
HTML:
<div class="recent-trade-img" style="margin:10px 0 0 0">
<input class="sell-type" value="Dealer" type="button"><input class="sell-type" value="Private Party" type="button">
<a href="prices_iPhone_2G_16GB_ATT.html"><img src="images/specs_iPhone_2G.jpg" width="186" height="182" alt=""/></a>
</div>
<div class="name">
<a href="prices_iPhone_2G_16GB_ATT.html">iPhone 2G<br> 16GB AT&T</a>
</div>
CSS:
.sell-type {
background-color: #ffffff;
border: 1px solid #ccc;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
color: #0564BC;
/*text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.2);*/
border-radius: 4px 4px 4px 4px;
cursor: pointer;
font-weight: bold;
padding: 5px 0;
/*width:130px;
height:58px;*/
width:100px;
height:48px;
margin: 4px;
font-size: 14px;
background-size:70% !important;
}
.sell-type:hover {
border-color: #0564BC;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 3px rgba(0, 0, 0, 0.1);
color: #36658f;
}