0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

fontawesome の アイコンを円の線で囲む

0
Last updated at Posted at 2022-03-26

この方法なら文字も囲める。

参考
https://codepen.io/noixip/pen/mWYeBa

リンクあり

hoge.css
<style>
.maru {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-flow: column;
    vertical-align: top;
    font-size: 24px;
    color:#ea3f60 !important;
}
/* 円の大きさ */
.heart{
    width: 50px;
    height: 50px;
    color: #ea3f60;
    border: 2px solid #ea3f60;
    background-color: #fff;
}
</style>

今回はリンクボタンにしたいので、以下にする。

hoge.html

//一般
<a class="maru heart">
<i class="far fa-heart"></i>
</a>

//vue.js
<router-link :to="{ path: '/login'}" class="maru heart">
<i class="far fa-heart"></i>
</router-link>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?