码迷,mamicode.com
首页 > Web开发 > 详细

CSS制作hover下划线动画

时间:2016-09-14 12:38:41      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

.demo1{
            position: relative;
            text-decoration: none;
            font-size: 20px;
            color: #333;
        }
        .demo1:before{
            content: "";
            position: absolute;
            left: 50%;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: #4285f4;
            transition: all .3s;
        }
        .demo1:hover:before{
            width: 100%;
            left: 0;
            right: 0;
        }

 

CSS制作hover下划线动画

标签:

原文地址:http://www.cnblogs.com/chenzeyongjsj/p/5871243.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!