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.
または?でhtmlを変更することで可能list-style-image:です。例を挙げてください。hoveractive
list-style-image:
hover
active
これを実現するには、HTML ではなく CSS を使用します。
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'); }