天天看點

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制作小圖示