SASS and Data Attribute Selecting and Nesting

前端 未结 2 1893
没有蜡笔的小新
没有蜡笔的小新 2020-12-11 18:48

I would like to apply some style to elements with the data attribute product but also to specific products.

Is there a way to d

2条回答
  •  南笙
    南笙 (楼主)
    2020-12-11 19:22

    input[data-product] {
    	color: #000;
    }
    input[data-product=red] {
    	color: #f00;
    }

    You do not need to nest, the second style will override the first.

提交回复
热议问题