tushar
tushar

Reputation: 307

transition effects not happening in Firefox and Opera

i tried to create a drop down menu effect using transition effects in css3 .the effects were not being produced in firefox and opera although it was in safari and chrome

for transition i used o-transition:height 0.5s; -webkit-transition:height 0.5s; -moz-transition:height 0.5s;

and the browser i used was mozilla 3.6.15 and opera 10.63 so please help me why is the transition effect not happening in firefox

Upvotes: 0

Views: 534

Answers (3)

webinista
webinista

Reputation: 3764

Yes Opera 10.63 is old, but it does support transitions with the -o- (not o-) vendor prefix.

Nick is also correct that Mozilla transitions are only supported in Firefox 4+.

Upvotes: 0

hallvors
hallvors

Reputation: 6229

Opera 10.63 is old, please upgrade to 11.01 or 11.10. Does that help?

Upvotes: 0

Nick
Nick

Reputation: 6965

Wasn't -moz-transition added to Firefox in version 4.0? And, it may well be a type, but you've specified o-transition in the question, when it is meant to be -o-transition.

Source: https://developer.mozilla.org/en/CSS/-moz-transition

Upvotes: 2

Related Questions