Is it possible to refer to a property previously defined in a selector without introducing an intermediate variable?

I'd like to say something like:

.foo {
  padding: 15px;
  width: 300px - $padding;
}

I know that $padding syntactically looks for a defined variable, I only use it in the above example to illustrate what I want to achieve in functionality.

The above example would be equivalent to this:

.foo {
  $padding: 15px;
  padding: $padding;
  width: 300px - $padding * 2;
}
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

No, you can't, and it would be great.

I haven't tested, but as far as I know the only css pre-processor that can do that is stylus. Look at the variable section in its documentation, where it says Property Lookup. It works that way:

.foo {
  padding: 15px;
  width: 300px - @padding * 2;
}

But no, in Sass you can't, as far as I'm concerned.

link|improve this answer
2  
This is exactly the syntax I want in sass. I was afraid it wouldn't be possible. Time to make a feature request. – zdennis Jan 21 at 22:27
I second that, it would be incredibly useful in some situations (such as mixin hover classes that dynamically shift the background-image position by the height of the parent element)! – Chris Francis Feb 13 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.