kobe
kobe

Reputation: 15835

what is -moz in css

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

Answers (3)

jensgram
jensgram

Reputation: 31508

Others have already answer the "what" question. As for the "why", Eric Meyer has written an interesting article on vendor prefixesPrefix or Posthack—on A List Apart.

Upvotes: 2

joni
joni

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

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

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

Related Questions