How do I apply CSS3 transition to all properties except background-position?

前端 未结 6 1688
傲寒
傲寒 2020-12-13 08:26

I\'d like to apply a CSS transition to all properties apart from background-position. I tried to do it this way:

.csstransitions a {
    -webkit-transition:          


        
6条回答
  •  时光说笑
    2020-12-13 08:57

    You can try using the standard W3C way:

    .transition { transition: all 0.2s, top 0s, left 0s, width 0s, height 0s; }
    

    http://jsfiddle.net/H2jet/60/

提交回复
热议问题