Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using SASS (.scss) for my current project.

Following example:

html

<div class="container desc">
    <div class="hello>
        Hello World
    </div>
</div>

scss

.container {
    background:red;
    color:white;

    .hello {
        padding-left:50px;
    }
}

This works great.

However I wonder how I can handle multiple classes while using nested styles. In the sample above I'm talking about this …

normal css

.container.desc {
    background:blue;
}

In this case all div.container would normally be red but div.container.desc would be blue.

How can I nest this inside container with SASS?

Any ideas on that? Is that even possible?

Thank you in advance.

share|improve this question

1 Answer

up vote 22 down vote accepted

You can use &, it will be replaced by the parent selector after compilation:

For your example:

.container {
    background:red;
    &.desc{
       background:blue;
    }
}

/* compiles to: */
.container {
    background: red;
}
.container.desc {
    background: blue;
}

See the Docs at Section Parent References.
The & will completely resolve, so if your parent selector is nested itself, the nesting will be resolved before replacing the &.
Note that you can place the & at virtually any position you like*, so the following is possible too:

.container {
    background:red;
    #id &{
       background:blue;
    }
}

/* compiles to: */
.container {
    background: red;
}
#id .container {
    background: blue;
}

*: No other characters are allowed in front of the &. So you cannot do a direct concatenation - #id& would throw an error.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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