css – 在sass中= =意味着什么

前端之家收集整理的这篇文章主要介绍了css – 在sass中= =意味着什么前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如,以下来自sass.这只是@mixin的简写吗?我似乎无法在谷歌上找到任何相关的信息
=multi-line-button($base-color)
  +background-clip('padding-Box')
  border-width: 1px
  +border-radius(6px)
  border-style: solid
  color: white
  display: block
  margin: 0.2em auto
  padding: 12px 15px
  text-align: center
  text-decoration: none

解决方法

是的,这是在Sass中定义mixins的方法

dunno如果this article会有所帮助

编辑:

以下是相同的

@mixin red-text
  color: #ff0000

=red-text
  color: #ff0000

只需在选择器中添加红色文本即可

原文链接:https://www.f2er.com/css/215286.html

猜你在找的CSS相关文章