Workaround for CSS variables in IE?

后端 未结 10 1789
Happy的楠姐
Happy的楠姐 2020-12-13 17:02

I\'m currently developing a web application in Outsystems in which I have the need to customize the CSS, in which I\'m using variables. I need to guarantee the app works cro

10条回答
  •  情话喂你
    2020-12-13 17:54

    If im not wrong there is a workaround, the CSS #ID Selector. Which should work for IE > 6 I guess.. So you can

    .one { };
    

    should work as

    #one {};
    

提交回复
热议问题