I'm trying to change a list item's color on hover, both the bullet/number and the text. I'm encountering a problem in Google Chrome where only the text is changing color. Am I missing something?
HTML:
<ul>
<li>test</li>
</ul>
<ol>
<li>test</li>
</ol>
CSS:
ol li:hover,
ul li:hover {
color: red;
}
JSFiddle: https://jsfiddle.net/yf0yff1c/2/