Skip to content

Instantly share code, notes, and snippets.

@wahyusa
Created October 31, 2020 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wahyusa/6f2a258cb4dce46c27496d36e52990f3 to your computer and use it in GitHub Desktop.
Save wahyusa/6f2a258cb4dce46c27496d36e52990f3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<style>
a {
color: green;
text-decoration: none;
cursor: pointer;
display: block;
font-size: 15px;
font-weight: 300;
position: relative;
padding: 0 5px;
}
a:after {
position: absolute;
left: 50%;
right: 50%;
bottom: 0;
height: 2px;
background: #c2c2c2;
content: "";
transition: all .4s;
line-height: 0;
}
a:hover:after {
left: 0;
right: 0;
}
ul {
display: flex;
list-style-type:none;
}
ul li {
margin: 0 8px;
}
</style>
<body>
<ul>
<li><a href="#!">Home</a></li>
<li><a href="#!">Work</a></li>
<li><a href="#!">About</a></li>
<li><a href="#!">Contact</a></li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment