Possible to make a:after/before pseudo elements clickable as part of the link?

后端 未结 8 1743
不知归路
不知归路 2020-12-16 09:42

pseudo elements a:after a:before allow you to add text that appears to be part of the link. However, I can\'t seem to figure out a way to make that portion clickable as part

8条回答
  •  我在风中等你
    2020-12-16 10:02

    If you have a link on Wrapper then you can make pseudo-elements clickable by setting pointer-events to none.

    a:after {
     pointer-events: none;
    }
    

提交回复
热议问题