Answers for "react exact path highlight"

CSS
0

react exact path highlight

nav ul {
  list-style: none;
  display: flex;
  background-color: black;
  margin-bottom: 20px;
}

nav ul li {
  padding: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

.current {
  border-bottom: 4px solid white;
}
Posted by: Guest on February-16-2020

Browse Popular Code Answers by Language