Re: [css-d] can i use javascript for rounded corners for ie and css3 for rest

2012-04-13 Thread Jérome Loï
you could use some js that use the ccs3 properties as a basis, like curvy corner, or css3 pie . for exeamples, the respective sites are self explanatory bye 2012/4/13 meera kibe meera_k...@yahoo.com Hi I don;t want to use images(and thus a different css file) for giving rounded corners for

[css-d] what are vendor specific prefixes?????

2012-04-13 Thread meera kibe
Hi Can someone explain to me in very simple terms what are vendor specific prefixes. Any article to read would be more than welcome to drive the point home. Meera __ css-discuss [css-d@lists.css-discuss.org]

Re: [css-d] what are vendor specific prefixes?????

2012-04-13 Thread Giles, Sarah
On 4/13/12 11:37 AM, meera kibe meera_k...@yahoo.com wrote: Hi Can someone explain to me in very simple terms what are vendor specific prefixes. Any article to read would be more than welcome to drive the point home. Meera __

Re: [css-d] what are vendor specific prefixes?????

2012-04-13 Thread JWN
Good Morning Meera You wrote: Hi Can someone explain to me in very simple terms what are vendor specific prefixes. Any article to read would be more than welcome to drive the point home. Meera The references below are the first two links in a google search for vendor specific prefixes.

[css-d] positioning

2012-04-13 Thread David Laakso
Greetings, Why does the sphere not show up in IE/9 or Opera? http://ccstudi.com/svg.html Thanks. Best, David Laakso -- Chelsea Creek Studio http://ccstudi.com __ css-discuss [css-d@lists.css-discuss.org]

Re: [css-d] positioning

2012-04-13 Thread David Hucklesby
On 4/13/12 7:12 PM, David Laakso wrote: Greetings, Why does the sphere not show up in IE/9 or Opera? http://ccstudi.com/svg.html I don't have IE 9 ATM. Opera Developer Tools gives this error message: -o-background-size is an unknown property Opera 11.62 on OS X 10.7.3 :( -- Cordially,

Re: [css-d] positioning

2012-04-13 Thread David Hucklesby
On 4/13/12 7:12 PM, David Laakso wrote: Greetings, Why does the sphere not show up in IE/9 or Opera? http://ccstudi.com/svg.html Apologies for the too hasty reply. The media queries all seem to target either webkit or moz. Could that be the answer? -- Cordially, David

Re: [css-d] positioning

2012-04-13 Thread Philippe Wittenbergh
On Apr 14, 2012, at 11:12 AM, David Laakso wrote: Why does the sphere not show up in IE/9 or Opera? http://ccstudi.com/svg.html 1. the media query only targets Gecko and Webkit, Opera will not see anything… @media only screen and (-opera-min-device-pixel-ratio: 1/1) {} will allow

Re: [css-d] positioning

2012-04-13 Thread Georg
On 13.04.2012 23:21, David Hucklesby wrote: The media queries all seem to target either webkit or moz. Could that be the answer? Yes! Opera and IE never see the relevant styles. A more cross-browser mediaquery makes it work as intended. Georg