我无法在 chrome 中制作盒子阴影,我使用了 webkit 前缀,但我的标签周围仍然有橙色框,而不是我应该得到灰色阴影。这适用于除 Chrome 之外的所有浏览器。
.loginForm input[type='text']:focus, .loginForm input[type='password']:focus,
.registerForm input[type='text']:focus, .registerForm input[type='password']:focus{
box-shadow: 0 0 10px gray;
-webkit-box-shadow: 0 0 10px gray;
}