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.

How would I make it so a CSS transition doesn't work inside a media-query, or in any other case? For example:

@media (min-width: 200px) {
    element {
        transition: width 1s;
    }   
}

@media (min-width: 600px) {
    element {
        transition: none; // SET TO NO TRANSITION
    }   
}
share|improve this question

2 Answers

up vote 1 down vote accepted

You can set the transition-property to none. This way, no transition effect will be applied.

Like this:

transition-property: none;
-moz-transition-property: none;
-webkit-transition-property: none;
-o-transition-property: none;
share|improve this answer
transition: width 0s

Should do the trick - as it's basically saying there is a transition, but 0s is too quick to see it!

share|improve this answer
not really a solution, if your transition is scaling the element – jaminator Dec 26 '12 at 3:09

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.