Twitter bootstrap bootsrap sass混入和浏览器前缀

Twitter bootstrap bootsrap sass混入和浏览器前缀,twitter-bootstrap,sass,Twitter Bootstrap,Sass,我正在尝试在使用引导的项目中使用SASS: a.navbar-brand { @include transition(all 0.6s 0 ease); background: url('../images/logo-gray.png') 0 50% no-repeat; background-size: 100% auto; display: inline-block; height: 60px; 过渡呈现为过渡:所有0.6s0轻松-没有浏览器前缀 我做错什么了吗 你确定

我正在尝试在使用引导的项目中使用SASS:

a.navbar-brand {
  @include transition(all 0.6s 0 ease);
  background: url('../images/logo-gray.png') 0 50% no-repeat;
  background-size: 100% auto;
  display: inline-block;
  height: 60px;
过渡呈现为
过渡:所有0.6s0轻松-没有浏览器前缀


我做错什么了吗

你确定你的混音看起来像那个吗?您是否包含了正确的一个:
@mixin transition($transition…{-webkit transition:$transition;transition:$transition;}
我的scss文件导入了
bootstrap.scss
,它导入了
bootstrap/mixin
,其中包括引导的转换mixin.UPDATE:我更新了grunt autoprefixer,现在我看到了前缀。@ryancito您在这里使用的是什么版本?