2022-10-25から1日間の記事一覧

Sass - プロパティのネスト

プロパティのネスト Nested Properties 記述例 《sample.scss》 .sample { border: { top: 5px solid #ccc; bottom: { width: 3px; style: dotted; color: black; } } } 《sample.css》 .sample { border-top: 5px solid #ccc; border-bottom-width: 3px; bo…