📇How to Draw Underline Link Hover Effect | HTML & CSS✏️

Lets Create a Underline Link Hover Effect using just HTML CSS, step-by-step in a very easy to follow along tutorial.

Source Code:

Markup:

<!DOCTYPE html>
<html lang=”en”>

<head>
<meta charset=”UTF-8″>…


This content originally appeared on DEV Community and was authored by Robson Muniz

Lets Create a Underline Link Hover Effect using just HTML CSS, step-by-step in a very easy to follow along tutorial.

Source Code:

Markup:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Cool Underline Hover Effects</title>
  <link rel="stylesheet" href="style.css">
</head>

<body>
  <nav>
    <ul>
      <li><a href="#"></a>Home</li>
      <li><a href="#"></a>Services</li>
      <li><a href="#"></a>Contact</li>
      <li><a href="#"></a>About</li>
    </ul>
  </nav>

</body>

</html>

css

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: rgb(226, 226, 226);
}

ul {
    height: 100vh;
    width: 70vw;
    min-width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: auto;
}
li {
    position: relative;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    color: #a0a0a0;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

li::after {
    content: '';
    position: absolute;
    background-color: #ff3c78;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -8px;
    transition: all 0.5s ease;
}

li:hover {
    color: #fff;
}
li:hover::after {
    width: 100%;
}


This content originally appeared on DEV Community and was authored by Robson Muniz


Print Share Comment Cite Upload Translate Updates
APA

Robson Muniz | Sciencx (2022-07-06T12:57:44+00:00) 📇How to Draw Underline Link Hover Effect | HTML & CSS✏️. Retrieved from https://www.scien.cx/2022/07/06/%f0%9f%93%87how-to-draw-underline-link-hover-effect-html-css%e2%9c%8f%ef%b8%8f/

MLA
" » 📇How to Draw Underline Link Hover Effect | HTML & CSS✏️." Robson Muniz | Sciencx - Wednesday July 6, 2022, https://www.scien.cx/2022/07/06/%f0%9f%93%87how-to-draw-underline-link-hover-effect-html-css%e2%9c%8f%ef%b8%8f/
HARVARD
Robson Muniz | Sciencx Wednesday July 6, 2022 » 📇How to Draw Underline Link Hover Effect | HTML & CSS✏️., viewed ,<https://www.scien.cx/2022/07/06/%f0%9f%93%87how-to-draw-underline-link-hover-effect-html-css%e2%9c%8f%ef%b8%8f/>
VANCOUVER
Robson Muniz | Sciencx - » 📇How to Draw Underline Link Hover Effect | HTML & CSS✏️. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/07/06/%f0%9f%93%87how-to-draw-underline-link-hover-effect-html-css%e2%9c%8f%ef%b8%8f/
CHICAGO
" » 📇How to Draw Underline Link Hover Effect | HTML & CSS✏️." Robson Muniz | Sciencx - Accessed . https://www.scien.cx/2022/07/06/%f0%9f%93%87how-to-draw-underline-link-hover-effect-html-css%e2%9c%8f%ef%b8%8f/
IEEE
" » 📇How to Draw Underline Link Hover Effect | HTML & CSS✏️." Robson Muniz | Sciencx [Online]. Available: https://www.scien.cx/2022/07/06/%f0%9f%93%87how-to-draw-underline-link-hover-effect-html-css%e2%9c%8f%ef%b8%8f/. [Accessed: ]
rf:citation
» 📇How to Draw Underline Link Hover Effect | HTML & CSS✏️ | Robson Muniz | Sciencx | https://www.scien.cx/2022/07/06/%f0%9f%93%87how-to-draw-underline-link-hover-effect-html-css%e2%9c%8f%ef%b8%8f/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.