LoginSignup
0
2

More than 3 years have passed since last update.

sass入門メモ

Posted at

この記事の目的

sassを書く際に一気に色々思い出すためのメモ

〜〜の中の〜〜を指定する場合

.main {
  margin: 20px;
  border-radius: 5px;
  .title {
    font-size: 32px;
    margin-bottom: 5px;
  }
}

入れ子にすることで〜〜の中の〜〜を指定できる

変数

$hensuu : hogehoge;

$マークを前につける変数の宣言になる

mixin

変数は一個だけを複数回使いまわしできるがmixinは複数のプロパティをまとめて使い回しができる。

@mixin hogehoge{
}
.hogehoge{
  @include hogehoge;
}
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2