我在我的移動網站的頁腳中有兩個標籤。有時所選產品的稱號,是大,如下圖所示它非常接近的價格:使用CSS的兩個標籤之間的間距
的HTML:
<div style="margin:5px;">
<span class="stickyProductctName">This is a really really really rea</span>
<div class="stickyPrice">$1142.00</div>
</div>
兩個元素的樣式如下圖所示:
#stickyFooter .stickyProductctName {
text-transform: uppercase;
width: 85%;
}
#stickyFooter .stickyPrice {
font-weight: bold;
width: 15%;
float: right;
margin-right: 20px;
}
我該如何改進?把它包起來!
在你的CSS,你爲什麼用#stickyFooter – chanchal 2014-10-30 15:55:34
也就是說它的CSS將被應用到該元素的ID。 – 2014-10-30 15:56:22