欢迎访问我的博客,目前从事Machine Learning,欢迎交流

一种css效果:标题带色块,React+Less

 .title {
        display: inline-block;
        font-size: 15px;
        font-weight: bold;
        position: relative;
        padding: 5px;

        &::after {
            content: '';
            height: 2px;
            background-color: #fe0000;
            // width: 50px;
            position: absolute;
            bottom: 0;
            left: 0px;
            right: 0px;
        }
    }

 

 

 <div className={style.title}>推荐产品</div>

 

posted @ 2019-10-22 16:58  有蚊子  阅读(648)  评论(0编辑  收藏  举报