我在這裏有這個網頁:http://artendijen.com/product/animals-stream/有鏈接在右側,但是我不能點擊它們...有沒有人知道爲什麼?CSS HTML無法點擊鏈接
左側:
<nav class="woocommerce-breadcrumb" itemprop="breadcrumb"><a class="home" href="http://artendijen.com">Home</a>/<a class="home" href="/shop">Gallery & Shopping</a>/<a href="http://artendijen.com/product-category/small/#108">Small</a>/Animals by the Stream</nav>
右側:
<ul style="float:right;" class="shoppingBread"><li><a href="/product-category/prints-notecards">Prints & Notecards</a></li><li><a href="/product-category/background-information">Background Information</a></li><li><a href="/cart">Cart</a></li></ul>`
CSS的左側:
.woocommerce .woocommerce-breadcrumb, .woocommerce-page .woocommerce-breadcrumb {
float: left;
z-index: 99999;
position: relative;
margin: 0 0 1em;
padding: 0;
font-size: .92em;
color: #777;
}
CSS的右側僅僅是浮動的權利,但這裏是CSS對於右側的列表項:
.shoppingBread li {
padding-bottom: 5px;
text-align: right;
}
或者刪除'浮動:right',將工作,因爲它們是與'text-align:right'對齊。 –
@JoshC - 正在更新我的答案,以給出第二個解決方案,清除浮動列表,這與您剛剛建議的幾乎相同;) – j08691