There is such a page. For decorative purposes, I add a pseudo-element ::before
for h2
.
<h2>Title...</h2>
h2::before {
content: "#";
}
It will be displayed like this:
# Title...
But the screen reader will read "#". It shouldn't be read.
I know aria-hidden
attribute can skip some element. But how can I use in this case?