Is there a way to write this css:
div.some-class{
...
}
span.some-class{
...
}
as something like this using scss?
.some-class{
&div{
...
}
&span{
...
}
}
I tried the above, but it returns an error.
|
Is there a way to write this css:
as something like this using scss?
I tried the above, but it returns an error. |
|||
|
I know there's a real desire to have your code grouped together in nice neat little blocks like that, but it just isn't possible. The error you get when you compile the code is quite clear:
Of course, if you reverse it so that it is
Your only option is to not nest at all.
|
|||
|
|
|
It depends what you're trying to do. The example you show will be interpreted as If If they share some of the same styles, you could write a mixin.
You could also
If you extend an existing class, the class must be a root class included in the file (i.e. it can't be a nested class). That said, since both elements have the class
|
||||
|
&is not css anyway; its scss. – sawa Jan 16 at 18:53&divworked the way you might have expected, it would have generated invalid CSS because the order is incorrect. – cimmanon Jan 16 at 18:59&in the order it should have been to generate valid CSS. – cimmanon Jan 16 at 19:45