現在、ベンダー固有の CSS プロパティを回避するために Stylus を使用しています。
vendor(prop, args)
-webkit-{prop} args
-moz-{prop} args
-ms-{prop} args
-o-{prop} args
{prop} args
animation()
vendor('animation', arguments)
ただし、これは に対してのみ機能し、またはに対しては機能animation
しません。animation-name
animation-duration
animation-*
プロパティ名の末尾に関係なく、任意の の mixin を作成する方法はありますか?