サンプルサンプル
テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
構造詳細
クラス名
bf-para-label--bubble-btm-shortright-solid
CSS
p.bf-para-label--bubble-btm-shortright-solid {
position: relative;
width: fit-content;
margin-bottom: 1.5rem;
padding: 0.25rem 1rem;
border-bottom: 1px solid;
}
.bf-para-label--bubble-btm-shortright-solid:before {
display: inline-block;
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 1rem;
border-right: 1px solid;
content: "";
}
.bf-para-label--bubble-btm-shortright-solid:after {
position: absolute;
bottom: -1rem;
left: 1rem;
border-width: 1rem 1rem 0 0;
border-style: solid;
border-right-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
content: "";
}
使い方
導入方法
- コピーボタンをクリック
- 投稿画面(エディタ)で右クリックしてプレーンテキストとして貼り付け
ー動画(予定)ー
オリジナルスタイルのルール
クラス名の付け方
- 原則として使用するクラス名は1つとする
- クラス名からは役割がわかるものとする
- クラス名からはデザインのイメージがわかるものとする
- 接頭語はbf-とする
- デザインを意味する部分は–で繋ぐ
- 詳細度は高め(ただしbodyなど広範囲に影響するのはNG)
CSSの書き方
- 余白の値はできるだけremまたはpx
- デフォルトカラー(うすめ)は#eee
- デフォルトカラー(こいめ)は#333
- colorとbackgroundは色設定から変更できることを頭に入れておく
- 疑似要素をテキストの後ろにしたい場合は、親にzindex 0、疑似要素にzindex -1にしておく
- importantは最低限なら使ってもいいと思う