我正在尝试使用bootstrap在项目中使用SASS @transition mixin:
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;
转换呈现为transition: all 0.6s 0 ease;
- 没有浏览器前缀。
我做错了什么吗?