LoginSignup
1
1

More than 3 years have passed since last update.

Sass(Scss) 学習記録

Last updated at Posted at 2019-04-01

Sass(Scss) 学習記録

Sass(Scss)の学習を始めたので、備忘録として残しています。

@mixin @include

1.@mixinで定義したスタイルを@includeで何度でも呼び出せ、関数的な使い方ができる。
2.引数を使用できる

 @mixin common_card($color) {
   width: 350px;
   padding: 15px, 30px;
   font: 15px;
   color: $color;

 }
.card_sample1 {
  @inculed common_card(##ff768a);
}

.card-sample2 {
  @inculed common_card(#FFE404);
}
1
1
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
1
1