Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't seem to find the correct syntax for the CSS transition shorthand with multiple properties. This doesn't do anything:

.element {
  -moz-transition: height .5s, opacity .5s .5s;
  -ms-transition: height .5s, opacity .5s .5s;
  -webkit-transition: height .5s, opacity .5s .5s;
  transition: height .5s, opacity .5s .5s;
  height: 0;
  opacity: 0;
  overflow: 0;
}
.element.show {
  height: 200px;
  opacity: 1;
}

I add the show class with javascript. The element becomes higher and visible, it just doesn't transition. Testing in latest Chrome, FF and Safari.

What am I doing wrong?

EDIT: Just to be clear, I'm looking for the shorthand version to scale my CSS down. It's bloated enough with all the vendor prefixes. Also expanded the example code.

share|improve this question
Check this documentation. developer.mozilla.org/en/CSS/CSS_transitions – websymphony Mar 12 '12 at 15:41
2  
Do you actually change the values of height and opacity? Otherwise they do not change – HerrSerker Mar 12 '12 at 15:42
I'm not too well-versed with CSS transitions - are the double .5s values after opacity intended? – BoltClock Mar 12 '12 at 15:52
The documentation does not give an example for using the shorthand version with multiple properties. Height changes from 0 to 200px, opacity from 0 to 1. The second .5s is a delay on the opacity transition. I want an element to grow in height, and when that is finished, fade it in. – Gregory Bolkenstijn Mar 12 '12 at 16:09
Ah yes, the delay value. – BoltClock Mar 12 '12 at 16:25

2 Answers

up vote 50 down vote accepted

Shorthand syntax:

transition: <property> || <duration> || <timing-function> || <delay> [, ...];

Note that the duration must come before the delay if the latter is specified. Individual transitions combined in shorthand declarations:

-webkit-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
-moz-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
-ms-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
-o-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;

Or just transition them all:

-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;

Here is a straightforward example. Here is another one with the delay property.

Compatibility/syntax as of November 2012 (data from http://caniuse.com/css-transitions):

Trident layout engine (IE):

  • IE6 to IE9, not supported
  • IE10+, unprefixed

Gecko layout engine (Firefox):

  • Firefox 4 to 15, -moz- prefixed
  • Firefox 15+, unprefixed
  • Firefox for Android 15+, -moz- prefixed

Webkit layout engine (Chrome, Safari, Blackberry):

  • Chrome 4+, -webkit- prefixed
  • Chrome for Android 18+, -webkit- prefixed
  • Android browser 2.1+, -webkit- prefixed
  • Safari 3.1+, -webkit- prefixed
  • Mobile (iOS) Safari 3.2+, -webkit- prefixed
  • Blackberry browser 7+, -webkit- prefixed

Presto layout engine (Opera):

  • Opera 10.5 to 12, -o- prefixed
  • Opera 12+, unprefixed
  • Opera Mini, not supported
  • Opera Mobile 10 to 12, -o- prefixed
  • Opera Mobile 12+, unprefixed
share|improve this answer
Have you tried this? It doesn't work for me. I also can't use the all property as I have a delay on the second property. – Gregory Bolkenstijn Mar 12 '12 at 16:08
It works in Chrome 17, Firefox 10, Safari 5. No means to try IE right now :(. Here is the jsfiddle: jsfiddle.net/remibreton/qAxnK – Rémi Breton Mar 12 '12 at 17:05
I've updated the jsfiddle to work with delays: jsfiddle.net/remibreton/qAxnK/1 – Rémi Breton Mar 12 '12 at 19:07
It seems to work, I'll look into my project and see if I can get it working. Thanks. – Gregory Bolkenstijn Mar 13 '12 at 9:17
1  
There is definitely a performance impact when transitioning all properties instead of simply the one you need. It might cause serious damage if you have a lot of elements transitioning all properties at the same time. About ms-transition, I don't know of any reason, now that IE10 is out, why anyone would still use ms-transition instead of the standard transition. It won't cause any trouble to have both, but it will, especially on a transition-heavy stylesheet, bloat your CSS. More importantly, the file size will also take a hit. – Rémi Breton Jan 15 at 0:17
show 3 more comments

If you have several specific properties that you want to transition in the same way (because you also have some properties you specifically don't want to transition, say opacity), another option is to do something like this (prefixes omitted for brevity):

.myclass {
    transition: all 200ms ease;
    transition-property: box-shadow, height, width, background, font-size;
}

The second declaration overrides the all in the shorthand declaration above it and makes for (occasionally) more concise code.

Demo

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.