Required input field gets border when value is empty and color is styled

核能气质少年 提交于 2019-12-04 13:43:12
Liam

The HTML5 attribute required is obviously being interpreted by firefox to include a red border, here's an answer about removing it

Firefox 4 Required input form RED border/outline

so just do:

[required] {
    color:red;
    box-shadow: none;
}

fixed

This is not a bug, this how Firefox highlights that that input needs a value.

required is supported by Firefox: https://developer.mozilla.org/en-US/docs/HTML/Element/input#attr-required

More explanation here: http://www.html5tutorial.info/html5-required.php

Because your script loops through all inputs in order of founded in the DOM, your required input loses focus as there's an input behind it. Thus invoking Firefox validation, checking if that input has a value.

Internal Firefox style:

:-moz-ui-invalid:not(output) {
    box-shadow: 0 0 1.5px 1px red;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!