美文网首页
纯css编写右键头

纯css编写右键头

作者: 禾苗种树 | 来源:发表于2022-03-09 17:14 被阅读0次
    成图
    ..leftList span a:after{
        content: '';
        display: inline-block;
        width: 7px;
        height: 7px;
        border-right: 1px solid #999;
        border-top: 1px solid #999;
        transform: rotate(45deg);
        margin-top: 14px;
        float: right;
    }
    
    //悬浮样式
    .leftList span a:hover{
        color: #f95216;
        font-weight: 600;
    }
    .leftList span a:hover:after{//注意这里,是悬浮在a上时after更改颜色
        border-color: #f95216;
    }
    }
    

    优点:
    便于随时更改箭头颜色

    相关文章

      网友评论

          本文标题:纯css编写右键头

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