我有一些输入类型有这个 scss 设置(来自框架)
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
...
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
{
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
}
我喜欢覆盖/重置所有,类似的东西
textarea,
input[type="*"],
{
@include box-shadow(none);
}
以上不起作用,还有
textarea,
input,
{
@include box-shadow(none);
}
不够具体。除了列出所有可能的类型之外,有没有办法做到这一点。
谢谢。