Last active
April 19, 2022 17:40
-
-
Save lkopacz/71848ff4be5bbc758c42d0326bbe95bc to your computer and use it in GitHub Desktop.
Skip to content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Title of the document</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<a class="focusable visually-hidden" href="#main">Skip to Content</a> | |
<header> | |
<!-- All the Navigation Links and your logo --> | |
</header> | |
<main id="main"> | |
<!-- All the rest of your content --> | |
</main> | |
<!-- The rest of your HTML --> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.visually-hidden { | |
position: absolute !important; | |
height: 1px; | |
width: 1px; | |
overflow: hidden; | |
clip: rect(1px, 1px, 1px, 1px); | |
} | |
.focusable.visually-hidden:focus { | |
position: relative; | |
left: 0; | |
width: auto; | |
height: auto; | |
overflow: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment