Links
'target= "_blank"`
To my surprise, screen readers don't give the information that links are target="_blank"
. The user has no idea what happens if he clicks it. According to this article we can use the ::after
or ::before
element to tell the user that this link opens a new tab.
This is done by adding the content: 'Opens in new tab'
, so simple, you can add it to your global style sheet for all links that have target= "_blank"
.
But keep in mind that means that all content in ::after
and ::before
element.