段落ブロック|ラベル(横線)

32 views

テキストテキストテキスト

サンプルサンプルサンプルサンプルサンプルサンプルサンプルサンプル

構造詳細

bf-para-label--horizontal
p.bf-para-label--horizontal {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}
.bf-para-label--horizontal:before, .bf-para-label--horizontal:after {
    content: "";
    flex: 1;
    background: currentColor;
    height: 1px;
    min-width: 50px;
}
.bf-para-label--horizontal:before {
    margin-right: 1rem;
}
.bf-para-label--horizontal:after {
    margin-left: 1rem;
}

使い方

導入方法

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

ー動画(予定)ー

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

クラス名の付け方

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

CSSの書き方

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

関連記事