As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center作为指导。
                            
                        
                    
                
                                6年前关闭。
            
                    
在哪里可以找到支持所有浏览器的CSS属性列表

例如:
我可以使用以下属性来制作div的背景色:

div
{
     background-color:rgba(255,255,255,0.7);
     filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#70FFFFFF',EndColorStr='#70FFFFFF'); /*IE*/
}


很难找到这种变化,您知道我在哪里可以找到它们吗?

最佳答案

http://caniuse.com具有出色的兼容性表,涵盖了html5,css3等的所有主要浏览器。

07-24 09:44
查看更多