I am working with "after" pseudo elements' content-property to add divider between my footer-links.
.link::after {
content: " | ";
}
On iOS the the whole element including it's after-pseudo-element gets highlighted. This behaviour is unwanted - I would like the after-content not to get highlighted when its parent element (the "real" element) is active.
Here's a screenshot of an clicked link on an iOS device
Setting the tap-highlight-color-property separately for the after-element doesn't seem to have any effect.
jsfiddle representing this problem
Is there any css-way that can solve this problem or do I have to change the non-css code to make the divider not get highlighted?