段落ブロック|ラベル風(吹き出し丸)

39 views

テキスト

サンプルサンプル

構造詳細

bf-para-label--bubble-round
p.bf-para-label--bubble-round {
    background: #eee;
    width: fit-content;
    padding: .25rem 1.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 40px;
}
p.bf-para-label--bubble-round:before,
p.bf-para-label--bubble-round:after {
    content: "";
    position: absolute;
    display: inline-block;
    background: inherit;
    border-radius: 50%;
}
p.bf-para-label--bubble-round:before {
    width: .75rem;
    height: .75rem;
    left: 1.5rem;
    bottom: -.9rem;
}
p.bf-para-label--bubble-round:after {
    width: .5rem;
    height: .5rem;
    left: 2.25rem;
    bottom: -1.25rem;
}

使い方

導入方法

  1. コピーボタンをクリック
  2. 投稿画面(エディタ)で右クリックしてプレーンテキストとして貼り付け

ー動画(予定)ー

オリジナルスタイルのルール

クラス名の付け方

  • 原則として使用するクラス名は1つとする
  • クラス名からは役割がわかるものとする
  • クラス名からはデザインのイメージがわかるものとする
  • 接頭語はbf-とする
  • デザインを意味する部分は–で繋ぐ
  • 詳細度は高め(ただしbodyなど広範囲に影響するのはNG)

CSSの書き方

  • 余白の値はできるだけremまたはpx
  • デフォルトカラー(うすめ)は#eee
  • デフォルトカラー(こいめ)は#333
  • colorとbackgroundは色設定から変更できることを頭に入れておく
  • 疑似要素をテキストの後ろにしたい場合は、親にzindex 0、疑似要素にzindex -1にしておく
  • importantは最低限なら使ってもいいと思う

関連記事