Answers for "nav bar at the top of the viewport"

CSS
0

the navbar should always be at the top of the viewport

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #cc0000;
  color: white;
  font-family: 'Exo 2', sans-serif;
  padding: 1em;
}
Posted by: Guest on February-10-2021

Code answers related to "nav bar at the top of the viewport"

Browse Popular Code Answers by Language