Hacker News new | ask | show | jobs
by apnew 1141 days ago
This site adds a nice message about reader mode on iOS+Safari. Anyone knows how this can be achieved?
1 comments

The text is in an element with CSS intended to make it “screen reader only” by visually hiding the element. Reader mode ignores those rules in the same way a screen reader would.

The unpleasant side-effect of this approach is that anyone using a screen reader for accessibility reasons is told to consider switching it off so they can look at the font the author picked.

Thank you for both insights!