Remove -webkit-text-decoration-skip?
Created by: MartijnCuppens
About this line: https://github.com/twbs/bootstrap/blob/5266669d34e80785a6a053031283cecf2516b7fc/scss/_reboot.scss#L202
This line renders links like this:
(← This is an image)
... instead of this: (← This is an image, the difference is in the underlining of the g)
... in safari.
But:
- Other elements in Safari still use
-webkit-text-decoration-skip: ink
if they are underlined - In chrome,
text-decoration-skip: ink
is used by default
IMO we should remove this line and let the browser/OS decide how the underline is rendered. What do you think?