エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Sass cheatsheet
.markdown-body { a { color: blue; &:hover { color: red; } } } to properties text: { align: center... .markdown-body { a { color: blue; &:hover { color: red; } } } to properties text: { align: center; // like text-align: center transform: uppercase; // like text-transform: uppercase } @mixin heading-font { font-family: sans-serif; font-weight: bold; } h1 { @include heading-font; } with parameters @mixin font-size($n) { font-size: $n * 1.2em; } body { @include font-size(2); } with default values @m