front end learning - Serbipunk/notes GitHub Wiki

http-equiv

https://chat.openai.com/share/3d4e9a7e-072b-47d8-b696-39e7ca0ddfb7

hover to show content

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
}

nav ul li a:hover::after{
    width: 100%;
}