天天看点

Css制作小图标

在日常的前端中,经常使用一些小图标,如

Css制作小图标

但是对于一个不会平面设计的人来说,这样是一件很费劲的事情,那么可以使用css实现类似的图标

如:

.tag-red {
        color: #fff;
        display: inline-block;
        font-size: px;
        font-weight: ;
        height: px;
        line-height: px;
        margin-right: ;
        padding:  px;
        text-align: center;
        background-color: #d33556;
    }

        .tag-blue {
        color: #fff;
        display: inline-block;
        font-size: px;
        font-weight: ;
        height: px;
        line-height: px;
        padding:  px;
        text-align: center;
        background-color: #258ee7;
    }
           
<a class="tag-red" href="#" target="_blank">置顶</a>
         <a class="tag-blue" href="#" target="_blank">置顶</a>
           

效果如下:

Css制作小图标