position fixed navbar code example
Example 1: stick menu bar in css
.navigation {
position: sticky;
top: 0;
z-index: 100;
}
Example 2: fixed navigation menu
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 1200px;
font-size: 18px;
font-family: sans-serif;
color: #5D6063;
}
a:link,
a:visited {
color: #5D6063;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.header {
position: fixed;
display: flex;
justify-content: space-between;
width: 100%;
padding: 50px;
background: #D6E9FE;
}
Example 3: flexbox navbar fixed top
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
a {
color: inherit;
text-decoration: none;
}
.wrapper {
max-width: 960px;
margin: 0 auto;
background-color: pink;
display: flex;
flex-direction: column;
}
.parent {
position: fixed;
top: 0;
left: 0;
margin: auto;
width: 100%;
}
.navbar {
display: flex;
justify-content: space-between;
background-color: yellow;
}
.logo {
padding: 20px;
}
.menu {
display: flex;
align-items: center;
}
.menu ul {
display: flex;
justify-content: flex-end;
align-items: center;
list-style: none;
background-color: grey;
}
.menu li {
padding: 20px;
margin-left: 20px;
background-color: orange;
color: rgba(255, 0, 0, 0.9);
font-size: 16px;
font-weight: bold;
}