Multiple CSS filters in IE

后端 未结 3 1897
一个人的身影
一个人的身影 2021-02-14 08:44

I\'m just wondering that it is possible to apply two different filters in IE using CSS. So, I need to use a transparent PNG and also some opacity to a div. Is it po

3条回答
  •  情话喂你
    2021-02-14 09:20

    The comma gets ignored. You need a whitespace or a newline to paste multiple filters.

    progid:xxx progid:yyy / works
    
    progid:xxx, progid:yyy / works
    
    progid:xxx  
    progid:yyy / works
    
    progid:xxx,progid:yyy / will not work
    

提交回复
热议问题