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

下划线css

时间:2018-04-30 17:58:31      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:isp   划线   元素   after   spl   位置   控制   display   margin   

/* <div class="text">header</div> */
        .text {
            /* 作用元素 */
            display: inline-block;
            position: relative;
            padding: 10px 0;
        }
        .text:after {
            /* 下划线伪元素 */
            display: block;
            content: '';
            /* 控制下划线动画起始位置 */
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            /* 下划线样式 */
            width: 0;
            border-bottom: 1px solid #000;
            transition: 0.5s;
        }
        .text:hover.text:after {
            /* 控制下划线宽度 */
            width: 100%;
        }

下划线css

标签:isp   划线   元素   after   spl   位置   控制   display   margin   

原文地址:https://www.cnblogs.com/dkplus/p/8973911.html

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