Re: wading into the Prefix morass...

On 21/02/2012 7:06 AM, David Singer wrote:

> I agree, it would be most helpful if they then *evangelized* the CSS
> prefix and 'ceased to mention' their old vendor prefixed version.  Is
> that what you are asking?

David. When using Safari 5, iPhone 4 (which I don't have), Chrome 17 or 
even Firefox 10, I should *not see* a box-shadow in the below test.

<!doctype html>

<style type="text/css">
div {
   margin: 2em;
   padding: 1em;
   border: solid black;
   -webkit-box-shadow: 1em 1em 1em black;
   -khtml-box-shadow: 1em 1em 1em black;
   -moz-box-shadow: 1em 1em 1em black;
   -ms-box-shadow: 1em 1em 1em black;
   -o-box-shadow: 1em 1em 1em black;
}
</style>

<div>Prefix morass</div>



-- 
Alan Gresley
http://css-3d.org/
http://css-class.com/

Received on Tuesday, 21 February 2012 13:41:01 UTC