LoginSignup
6
2

More than 5 years have passed since last update.

CSSで赤い丸を作ってみる

Posted at

イメージ

スクリーンショット 2017-11-17 13.54.49.pngスクリーンショット 2017-11-17 13.59.05.png

こんな感じで、丸の中に数字を入れる!

コード

HTML

html
<p class="maru">{数字}</p>

今回はpタグで作ったけど別になんでもいい。

style

css
.maru{
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    background-color: #e82a2a;
    color: #fff;
    text-align: center;
    line-height: 22px;
    margin-bottom: 6px;
}

サイズとか色は後で好きに変える感じ!(・ω・)/

色々色変更があるバッヂのように使うのであれば下記のように
ベースと背景色を分けてもいいかも

css
.base{
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    color: #fff;
    text-align: center;
    line-height: 22px;
    margin-bottom: 6px;
}
.red{
    background-color: #e82a2a;
}
6
2
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
6
2