使用列表,我想創建一個鏈接列表的圖像中樣式列表按鈕
<div id="toolbarbottom" class="toolbar" style="position: fixed; clear: both; overflow: visible; bottom: 0px; left: 0px; width: 100%;">
<ul>
<li id="active"><span><a id="current" href="#add" class="button">News</a></span></li>
<li><span> <a href="#Updates" class="button">Updates</a></span> </li>
<li><span><a href="#Contact" class="button">Contact Us</a></span></li>
<li><span><a href="#Website" class="button">Website</a> </span></li>
<li><span><a href="#Refresh" id="#Refresh" class="button">Refresh</a></span> </li>
</ul>
</div>
我是那種貼在CSS(按鈕)和可能之間的間距列表元素。使列表以這種形式出現。任何人有我如何解決這個問題的想法嗎?
我應用了上面的解決方案,並且看到了邊框。如果我將圖像對齊,使其看起來好像恰好位於每個列表元素的中心,並且將點擊區域縮小到該圖像區域,如果我將該跨度移動到點擊內部?本質上,我的跨度是爲了包圍可點擊區域,並且我有了處理邊緣/填充屬性的想法,可以將其縮小到我的最終圖像的大小。 – Kobojunkie
以'背景位置:50%50%'或'center center'爲中心圖像。通過調整'a'來減少可點擊面積 - 所以如果li是80px x 80px,就像我的例子中的'a'可能是display:block; height:40px; margin:20px;'那麼'a'只能在40px的正方形區域點擊,但在每邊保留20px以使其填充80px空間 – clairesuzy