使用諸如Modernizr之類的庫,您可以在html標記中獲得一些具有不同瀏覽器功能的類,例如,如果無法執行css轉換html標記,則會獲取no-csstransforms類。 什麼我想要做的是寫一個元素的CSS屬性和分裂他們基於一個html類,例如:LESS/CSS從元素聲明中選擇父項
.my-element {
[SomethingThatCanSelectAparent]html.csstransforms & {
// i can do transforms to this element
}
[SomethingThatCanSelectAparent]html.no-csstransforms & {
/// whatever you want do for older browsers
}
}
我知道,我可以從html.whaterver { .my-element }
開始,但在大型網站會很煩人
我怎樣才能以這樣的乾淨方式實現它?
哦,那還沒有,當我發佈這個,哎。這仍然是他的問題的答案,在傳統的CSS中是不可能的。 – Roberrrt