The behaviour I currently have is this one: https://jsfiddle.net/phpd41tb/13/
I have a link made with an a tag, and an extension of this link with the css :after:
HTML
<a href="some-url">Notifications</a>
CSS
&:after {
content : ">"; }
(the part of the code here is just so I can post)
If you can see the link, there's a blink between the "Notifications" and the ">", a space that isn't part of the link.
What I want, is the whole block "Notifications >" being clickable whatever the space between the a tag and its :after is.
I tried all solutions there, which are more or less the same ones, but since it's not an inline-block problem in my case, I couldn't make it work:
- https://css-tricks.com/fighting-the-space-between-inline-block-elements/
- Why is there an unexplainable gap between these inline-block div elements?
I didn't find anything else related to that, and all of my attempts to change the html (like putting all in another div, etc), didn't work either.
Any ideas? :)