【CSS】ボタンにCSSでアイコンを付ける方法

aタグのみで作成した以下のようなボタンを
CSSのみで装飾する場合、文字のすぐ前や後ろにアイコンなどを付けたい場合があります。

<a href="#" class="icon-btn">ボタン</a>
a.icon-btn {
    display: block;
    color: #fff;
    background: #000;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    border-radius: 100px;
    padding: 10px;
    margin: 10px auto;
}

a.icon-btn::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(./img/icon-btn.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin: -3px 5px 0 0;
}

参考:https://webnetamemo.com/coding/css/201708105449

関連記事

コメントを残す

*