5
5

More than 5 years have passed since last update.

Sass でリストのリスト

Last updated at Posted at 2012-10-17

Sass でオブジェクト指向っぽく書きたいときに便利です。, の方が半角スペースよりも優先されるのがポイント。

$fruits: orange #fe8a06 12px, apple #aa101b 16px, banana #fff516 20px;

@each $fruit in $fruits {
  $name: nth($fruit, 1);
  $color: nth($fruit, 2);
  $pad: nth($fruit, 3);
  .#{$name}-desc {
    color: $color;
    padding-left: $pad;
  }
}
5
5
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
5
5