rgba background with IE filter alternative: IE9 renders both!

后端 未结 5 789
故里飘歌
故里飘歌 2020-12-15 07:42

I\'m trying use make a div\'s background transparent using a mixture of CSS3 rgba() and microsoft\'s filter property like this:

div         


        
5条回答
  •  太阳男子
    2020-12-15 08:03

    If you're using HTML5 you may want to go down the route of using

    
    
    
    
    
    
    
    
    

    and in your CSS use something like :

    .ie9 .element {filter: none; }
    

提交回复
热议问题