Reputation: 15835
I have seen some css files use -moz
, but I have never used it.
Can anyone tell me what is that and why is it used?
Upvotes: 2
Views: 2613
Reputation: 31508
Others have already answer the "what" question. As for the "why", Eric Meyer has written an interesting article on vendor prefixes—Prefix or Posthack—on A List Apart.
Upvotes: 2
Reputation: 5462
CSS properties that get only processed by the gecko engine (e.G: Firefox). THat's part of the CSS standard, so that you can set specific properties for a browser without disrupting the others.
Upvotes: 4
Reputation: 798676
They're Gecko-specific properties. They're used to invoke Gecko-specific behavior, or behavior that isn't implemented in other layout engines.
Upvotes: 3