Catpow SCSS

background image

img

background-imageなどで用いる画像URLの値を返します。グローバル変数$imagesが定義されていればそこから画像のURLの値を取得します。
scss
@import 'catpow';

$images:(
	pattern1:'images/pattern1.gif'
);

.box{
	background-image:img(pattern1);
}
css
.box {
  background-image: url("images/pattern1.gif");
}