如何在SCSS中使用类获取相同的对象?

时间:2013-06-17 20:11:39

标签: css ruby sass

我有这段代码:

input[type="text"] {
    color: red;
    .blue {
        color: blue;
    }
}

这给了我这个

input[type="text"] {
    color: red
}
input[type="text"] .blue {
    color: blue;
}

我如何得到这样的东西?

input[type="text"] {
    color: red
}
input[type="text"].blue {
    color: blue;
}

1 个答案:

答案 0 :(得分:1)

您正在寻找父选择器&):

input[type="text"] {
    color: red;
    &.blue {
        color: blue;
    }
}