写一个非常简单的函数

时间:2017-04-13 05:57:48

标签: sass

我从LESS转换到SASS但是使用它有些困难

非常简单的变量+函数减去:

0

我用它:

 @mini :0.1rem;
 @brown:#533a38;
 .border(@color:@brown){border:@mini solid @color;}

我怎样才能对SASS做同样的事?

谢谢

1 个答案:

答案 0 :(得分:1)

#contact-form{
  border: @include border;
}

如果您不想返回任何内容,请使用mixin。现在我们使用border:

<script type="text/javascript">
handler = Gmaps.build('Google');
handler.buildMap({ provider: {}, internal: {id: 'map'}}, function(){
  markers = handler.addMarkers(<%=raw @hash.to_json %>);
  handler.bounds.extendWith(markers);
  handler.fitMapToBounds();
  handler.getMap().setZoom(17);
});