如何制作list-style-type:square;只有当我将鼠标悬停在其中一个列表项上时才会出现?
要清楚我想要list-style-type:none;除非我徘徊在其中一个列表项上。
答案 0 :(得分:1)
HTML
<ul>
<li>Item</li>
</ul>
CSS
li{
list-style-type:none;
}
li:hover{
list-style-type:square;
}
答案 1 :(得分:0)
使用
li{
list-style-type:none;
}
li:hover{
list-style-type:square;
}
答案 2 :(得分:0)
你可以尝试
li { list-style-type: none; }
li:hover { list-style-type: square; }