それらがプログラミングに存在する場合)、
次の入力を含むHTMLフォームがある場合:
<input type="text" />
<input type="password" />
<input type="checkbox" />
type="text"
またはであるすべての入力にスタイルを適用したいtype="password"
。
あるいは、すべての入力のwhereで解決しますtype != "checkbox"
。
私はこれをしなければならないようです:
input[type='text'], input[type='password']
{
// my css
}
行う方法はありません:
input[type='text',type='password']
{
// my css
}
または
input[type!='checkbox']
{
// my css
}
私は周りを見回しましたが、単一のCSSセレクターでこれを行う方法はないようです。
もちろん大したことではありませんが、私は好奇心旺盛な猫です。
何か案は?