Combine :after with :hover

前端 未结 3 1716
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-29 16:54

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

3条回答
  •  死守一世寂寞
    2020-11-29 17:10

    in scss

    &::after{
    content: url(images/RelativeProjectsArr.png);
    margin-left:30px;
    }
    
    &:hover{
        background-color:$turkiz;
        color:#e5e7ef;
    
        &::after{
        content: url(images/RelativeProjectsArrHover.png);
        }
    }
    

提交回复
热议问题