
3 Apr
2011
3 Apr
'11
6:59 a.m.
Hi, one of my most loved features in SASS is automatic scoping/cascading via indenting/significant whitespace. Consider the following SASS code: #header p color: red #content p color: blue Sass does automatically cascade the two p definitions in the resulting CSS: #header p { color: red; } #content p { color: blue; } Is this possible in Cassius? Or considered as feature for the future? IMHO does this feature lead to very concisely scoped CSS while removing the burden of specifying the cascades from the developer. Cheers, T.