Checkbox Mobile Nav Toggle Test

Developer
Size
2,295 Kb
Views
10,120

How do I make an checkbox mobile nav toggle test?

Testing to see if I could make a CSS only navigation that would collapse when one of the links was clicked, rather than relying on the checkbox being un-ticked.... What is a checkbox mobile nav toggle test? How do you make a checkbox mobile nav toggle test? This script and codes were developed by Chris Sargent on 29 November 2022, Tuesday.

Checkbox Mobile Nav Toggle Test Previews

Checkbox Mobile Nav Toggle Test - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Checkbox Mobile Nav Toggle Test</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <input type="checkbox" id="mobile-nav-check" />
<nav id="main-nav" class="navbar"> <label for="mobile-nav-check" class="mobile-nav-button"> Toggle Menu </label> <div class="nav-list-container"> <ul class="nav-list"> <li><a href="#about">About Us</a> </li> <li><a href="#team">Our Team</a> </li> <li><a href="#contact">Contact Us</a> </li> </ul> </div>
</nav>
</body>
</html>

Checkbox Mobile Nav Toggle Test - Script Codes CSS Codes

input#mobile-nav-check { display: none;
}
input#mobile-nav-check:checked + .navbar { max-height: 400px;
}
.mobile-nav-button { line-height: 50px;
}
.navbar { max-height: 50px; overflow: hidden; background-color: grey; border-bottom: 1px solid black;
}
.navbar .nav-list { margin: 0; padding: 0; border: 0; list-style-type: none;
}
.navbar .nav-list li a { display: block; line-height: 20px; padding: 15px 15px;
}
nav.navbar ~ a:active { background-color: yellow; height: 100px;
}
Checkbox Mobile Nav Toggle Test - Script Codes
Checkbox Mobile Nav Toggle Test - Script Codes
Home Page Home
Developer Chris Sargent
Username ChrisSargent
Uploaded November 29, 2022
Rating 3
Size 2,295 Kb
Views 10,120
Do you need developer help for Checkbox Mobile Nav Toggle Test?

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!

Chris Sargent (ChrisSargent) Script Codes
Create amazing video scripts 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!