Css制作hover下划线动画

时间:2022-07-24
本文章向大家介绍Css制作hover下划线动画,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。
    .demo {
        position: relative;
        font-size: 20px;
        display: inline-block;
        cursor: pointer;
    }

    .demo:before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: #4285f4;
        transition: all .3s;
    }

    .demo:hover:before {
        width: 100%;
        left: 0;
        right: 0;
    }
 <div class="demo">自己实现的hover效果</div>