【发布时间】:2022-01-28 09:49:16
【问题描述】:
我正在为 next.js 应用程序编写登录屏幕,当我选择一个时,边框的颜色变成了这种白色+蓝色的混合。
我尝试了以下方法
.input:focus {
border: 5px solid #f23;
}
但它改变了其他东西:
如何更改边框的颜色?
<input type="text" className={styles.input} style={{ marginBottom: 10 }} autoComplete="off" autoCorrect="off" autoCapitalize="off" aria-required="true" spellCheck="false" placeholder="Email" ></input>
【问题讨论】: