I'm using scss and I need to undeline all the text (number and text) when hovering over the li
item
this is an example but the number still not underlined
https://jsfiddle.net/viking_123/9hgjyo05/1/
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
SCSS
ol li {
cursor:pointer;
&:hover {
text-decoration: underline;
}
}
Thanks