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

发布于 2024-10-13 19:41:41 字数 224 浏览 3 评论 0原文

在 CSS 中,你可以这样做

input[type=submit] {
  // properties
}

这对于样式表单按钮。

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

In CSS, you can do this:

input[type=submit] {
  // properties
}

It's a very useful for styling form buttons.

How do you do the same thing in SASS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

慢慢从新开始 2024-10-20 19:41:41

你也可以这样嵌套

input
  &[type="submit"]
    .... 
  &[type="search"]
    .... 

You can also nest it like this

input
  &[type="submit"]
    .... 
  &[type="search"]
    .... 
拿命拼未来 2024-10-20 19:41:41

此转换器网站说:

input[type=submit]
  // properties

This converter website says:

input[type=submit]
  // properties
半岛未凉 2024-10-20 19:41:41

我在我的项目中使用下面的一个。

.bg-brand-3 {
  background-color: black;
  &[type="button"]:enabled {
    &:hover {
      background-color: orange;
    }
    &:active {
      background-color: green;
    }
  }
  &[type="submit"] {
    // css
  }
}

:enable:not(:disabled) 含义相同

I use the one below in my project.

.bg-brand-3 {
  background-color: black;
  &[type="button"]:enabled {
    &:hover {
      background-color: orange;
    }
    &:active {
      background-color: green;
    }
  }
  &[type="submit"] {
    // css
  }
}

The :enable has the same meaning as :not(:disabled)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文