开发者

How do you define attribute selectors in SASS?

In CSS, you can do this:

inpu开发者_如何学Ct[type=submit] {
  // properties
}

It's a very useful for styling form buttons.

How do you do the same thing in SASS?


You can also nest it like this

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


This converter website says:

input[type=submit]
  // properties


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)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜