美文网首页
导航hover效果

导航hover效果

作者: 我是不是很帅 | 来源:发表于2018-08-23 15:51 被阅读0次

    <a href="##">菜单</a>

    //兼容IE9以上

    a{

        display: inline-block;

        padding: 3px 12px;

        text-decoration: none;

        position: relative;

    }

    a:before{

        content: "";

        position: absolute;

        transition: all .2s ease-in-out;

        left: 50%;

        right: 50%;

        bottom: 0;

        border-bottom: 5px solid red;

    }

    a:hover::before{

        left: 0;

        right: 0;

        border-bottom-color: #009a61;

    }

    相关文章

      网友评论

          本文标题:导航hover效果

          本文链接:https://www.haomeiwen.com/subject/lxcqpftx.html