Skip to content

Instantly share code, notes, and snippets.

@SteveJonesDev
Last active May 31, 2024 19:17
Show Gist options
  • Save SteveJonesDev/ba428ac4e98a5107022094d3dd30857b to your computer and use it in GitHub Desktop.
Save SteveJonesDev/ba428ac4e98a5107022094d3dd30857b to your computer and use it in GitHub Desktop.
Screen Reader Only Text
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
</style>
</head>
<body>
<h2 class="sr-only">Main content starts here</h2>
<p>This is some visible text on the page.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment