Page 1 of 1

CSS Rosetta stone?

Posted: Sun Jun 05, 2011 6:10 pm
by Isaac
Right now I'm just looking up equivalents, one at a time.

There must be a large list of these css properties, showing how they're typed for other browsers, right?

Re: CSS Rosetta stone?

Posted: Mon Jun 06, 2011 10:28 pm
by Jeff250
Could you give a small example of what you mean?

Re: CSS Rosetta stone?

Posted: Tue Jun 07, 2011 6:14 am
by Isaac
Yes I can:

css:

Code: Select all

background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
-moz-background-size: cover;	
The IE8 version of this background property is missing since it requires javascript.

This is the most simple example, and clearest example. I believe there are many more differences between browsers when it comes to style sheets, but I haven't found a single list comparing all the differences in syntax between columns, so a coder could easily write a script that converts everything correctly.

Re: CSS Rosetta stone?

Posted: Tue Jun 07, 2011 11:21 am
by fliptw
http://www.quirksmode.org/css/contents.html

http://paulirish.com/2009/browser-specific-css-hacks/

The long and the short of is this: IE and everything else really.

Re: CSS Rosetta stone?

Posted: Tue Jun 07, 2011 12:57 pm
by Isaac
Ok! I think that might do it! Thanks!