Sass Nesting for :hover does not work

The Solution to Sass Nesting for :hover does not work is


For concatenating selectors together when nesting, you need to use the parent selector (&):

.class {
    margin:20px;
    &:hover {
        color:yellow;
    }
}

~ Answered on 2013-04-13 02:44:48


Most Viewed Questions: