如何在SASS中定义属性选择器?

在CSS中,您可以执行以下操作

input[type=submit] {
  // properties
}

这对于样式表单按钮非常有用。

您如何在SASS中做同样的事情?

Green理查德2020/03/18 17:04:10

您也可以这样嵌套

input
  &[type="submit"]
    .... 
  &[type="search"]
    .... 
阿良2020/03/18 17:04:10

该转换器网站说:

input[type=submit]
  // properties