CSS Only Dropdown Menus

Developer
Size
1,676 Kb
Views
26,312

How do I make an css only dropdown menus?

A dropdown navigation made with HTML and CSS (No Javascript).. What is a css only dropdown menus? How do you make a css only dropdown menus? This script and codes were developed by Matt Shull on 28 September 2022, Wednesday.

CSS Only Dropdown Menus Previews

CSS Only Dropdown Menus - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS Only Dropdown Menus</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <ul id="nav"> <li class="link"> <div class="linkTitle">Home</div> </li> <li class="link"> <div class="linkTitle">About</div> <ul class="subMenu"> <li class="subLink"> <a href="#">My Life</a> </li> <li class="subLink"> <a href="#">My Family</a> </li> <li class="subLink"> <a href="#">My Job</a> </li> </ul> </li> <li class="link"> <div class="linkTitle">Blog</div> <ul class="subMenu"> <li class="subLink"> <a href="#">Recent Post 1</a> </li> <li class="subLink"> <a href="#">Recent Post 2</a> </li> <li class="subLink"> <a href="#">Recent Post 3</a> </li> </ul> </li> <li class="link"> <div class="linkTitle">Contact</div> </li>
</ul>
</body>
</html>

CSS Only Dropdown Menus - Script Codes CSS Codes

#nav { list-style:none; padding:0; text-align:center;
}
.link { display:inline-block; width:20%; vertical-align: top;
}
.linkTitle { padding:10px;
}
.link:hover > .linkTitle { background-color:lightgray;
}
.link:hover > .subMenu { display:block;
}
.subMenu { display:none; list-style:none; text-align:left;
}
CSS Only Dropdown Menus - Script Codes
CSS Only Dropdown Menus - Script Codes
Home Page Home
Developer Matt Shull
Username derekshull
Uploaded September 28, 2022
Rating 3
Size 1,676 Kb
Views 26,312
Do you need developer help for CSS Only Dropdown Menus?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Matt Shull (derekshull) Script Codes
Create amazing marketing copy with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!