我建立一個簡單的列表並添加到它的CSS。現在垂直菜單工作..問題在於CSS的部分。列表項目區域比鏈接本身更大。這意味着如果用戶點擊該區域,則不會導致鏈接區域不覆蓋所有列表項目區域。下拉菜單鏈接不工作
#sidebar1 li {
list-style: none;
position: relative;
width: 120px;
height: 30px;
padding: 0 20px;
background-color: black;
line-height: 30px;
cursor: pointer;
}
#sidebar1 li a {
text-decoration: none;
color: white;
}
我想要做的是匹配鏈接填充或寬度與列表寬度。因此,無論用戶點擊菜單項目,鏈接都會被點擊。那問題是,我嘗試過了,它沒有工作
也請給我們HTML代碼。 – hennes 2012-02-02 19:51:03