自分がよく使用するSASSの基本指定

by iwbjp

CSS

@charset "UTF-8";

@import "compass"; 

$sprite: sprite-map("test/*.png", $spacing: 5px, $layout: smart);

.hoge {
  width: image-width("test/hoge.png");
  height: image-height("test/hoge.png");
  background-image: $sprite;
  background-position: sprite-position($sprite, hoge);
}

.fuga {
  width: image-width("test/fuga.png");
  height: image-height("test/fuga.png");
  background-image: $sprite;
  background-position: sprite-position($sprite, fuga);
}