2017-08-03 79 views
0

我在我的構建系統使用薩斯皮棉和我得到的警告Attribute-selector should be nested within its parent Type-selector使用以下選擇時:如何在將CSS屬性與選擇和textarea一起應用於特定輸入元素時防止「force-attribute-nesting」Sass-Lint警告?

input[type='text'], 
input[type='number'], 
input[type='email'], 
input[type='password'], 
select, 
textarea { 
    color: gray; 
} 

這可怎麼更新,以防止警告消息,但也適用的CSS屬性所有這些元素? (我顯然不想將屬性選擇器應用到selecttextarea,但不知道如何在沒有兩個單獨的選擇器的情況下如何做到這一點?)

回答

0

試試這個,希望會有幫助。

// sass-lint:disable-block no-qualifying-elements force-attribute-nesting 
input[type='text'], 
input[type='number'], 
input[type='email'], 
input[type='password'], 
select, 
textarea { 
    color: gray; 
} 
相關問題