Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
list-style-image:有可能改变htmlhover或active? 请举例。
list-style-image:
hover
active
您将使用 CSS 而不是 HTML 来实现这一点:
HTML
<ul> <li>abc</li> <li>def</li> </ul>`
CSS
li { list-style-image: url('original.png'); } li:hover { list-style-image: url('replacement.png'); }