I want to combine :after with :hover in CSS (or any other pseudo selector). I basically have a list and the item with the selected cl
:after
:hover
selected
in scss
&::after{ content: url(images/RelativeProjectsArr.png); margin-left:30px; } &:hover{ background-color:$turkiz; color:#e5e7ef; &::after{ content: url(images/RelativeProjectsArrHover.png); } }