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