设置transition-property
为all
时,在浏览器窗口内缩放时看起来很糟糕,因为width
和height
属性也在转换。当我只想要background
andcolor
时,我需要多行定义它,但是:
transition-property: color, background;
transition-duration: 250ms;
这很糟糕,因为我也必须为-webkit-
,-moz
和-o-
. 相反,我正在寻找这样的东西:
transition: [color and background] 250ms;
有什么语法吗?