私はそれが必要な場合は、入力の背景色を変更するCSSルールを作成しようとしましたが、ボット無効にするか、焦点のCSSの入力は、集束または無効になっていないのに必要な
私はこれを持っているが、それは働いていません明らかに!
<input type="tel" class="form-control" placeholder="Phone" name="phone" value="" required>
とCSS:// jsfiddle:
input:not(disabled):not(focus):required {
background-color: rgba(255,0,0,.10)
}
何が私のためにうまく働いている必要があり、HTTPS
:focus
を使用してください。ネット/ bomnrm0d/ –