如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你也可以这样嵌套
You can also nest it like this
此转换器网站说:
This converter website says:
我在我的项目中使用下面的一个。
:enable
与:not(:disabled)
含义相同I use the one below in my project.
The
:enable
has the same meaning as:not(:disabled)