"Responsive Menu Without JS"
Bootstrap 4.1.1 Snippet by naimansari

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<title>Responsive Nav</title>
</head>
<body>
<header>
<figure class="brand">Responsive</figure>
<nav class="menu">
<input type="checkbox" id="menuToggle">
<label for="menuToggle" class="menu-icon"><i class="fa fa-bars"></i></label>
<ul>
<a href="http://stackoverflow.com/questions/9191803/why-does-z-index-not-work"><li>Home</li></a>
<a href="#"><li>About Us</li></a>
<a href="#"><li>Services</li></a>
<a href="#"><li>Info</li></a>
<a href="#"><li>Contact Us</li></a>
</ul>
</nav>
</header>
</body>
</html>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*Configurações Globais*/
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
li {
list-style: none;
}
/*Início das configurações da header*/
header {
width: 100%;
height: 50px;
line-height: 50px;
text-align: center;
font-family: sans-serif;
background-color: #f1c40f;
}
.brand {
width: auto;
height: 100%;
float: left;
margin: 0 0 0 5%;
}
/*Início das configurações da Navigation*/
.menu {
width: 60%;
height: 100%;
float: right;
}
.menu ul {
width: 100%;
height: inherit;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: