Skip to content

Instantly share code, notes, and snippets.

@sebkolind
Created April 14, 2019 16:35
Show Gist options
  • Save sebkolind/f308975173dfb4aaaa25bc098d1ad5e7 to your computer and use it in GitHub Desktop.
Save sebkolind/f308975173dfb4aaaa25bc098d1ad5e7 to your computer and use it in GitHub Desktop.
Mega dropdown - Vanilla JS - HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Awesome mega dropdown</title>
</head>
<body>
<nav>
<a class="nav-item" href="#">Nav item 1</a>
<a class="nav-item" href="#">Nav item 2</a>
<a class="nav-item" href="#">Nav item 3</a>
</nav>
<div class="dropdown"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment