Where can I find a list CSS properties to support all browsers
For example:
I can make the background color of a div by using the following properties:
div
{
background-color:rgba(255,255,255,0.7);
filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#70FFFFFF',EndColorStr='#70FFFFFF'); /*IE*/
}
Finding this variations is hard do you know where can I find them?
http://caniuse.com has excellent compatibility tables covering all of the major browsers for html5,css3 etc.