3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

scssでカッコを付けないで-をすると計算される。

Last updated at Posted at 2013-05-22

sassで変数に正の値を指定してあとで、valueの所でマイナスを付けて負の値にしょうとしたら以下のようになってしまった。

$y: 120px;
background-position: 0px -$y;
//これだと、background-position: -120px となってしまう!

background-position: -0px -120px;
と表示させるには -$yをかっこで囲む必要がある。

$y: 120px;
background-position: 0px (-$y);
// background-position: -0px -120px;
3
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?