So I have an image of a flowchart and have created a written narrative of the image separate from the flowchart. I plan to hide the text off-screen for a screen reader using something like the following code:
.hidden{
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
My question is, if there are anchor links within the text, how will this affect (1) the user with the screen reader (will they be able to jump around within the text with those links), and (2) will the presence of these links cause the visible portion of the document to behave erratically for other users who will only see the image and be unaware of the written narrative?
Please note that I am not very technically savvy. I know just enough to mess things up pretty well.