Need help in navbar

How can you set the navbar to be at the top of the veiwport even after scrolling

Review the challenge

More info on position

1 Like
.navbar {
  position: fixed; 
 /* bottom: 0;*/  //or /* top: 0;*/ to be fixed at top;
}
1 Like