gpt4 book ai didi

css - 更改文本输入的边框颜色

转载 作者:太空宇宙 更新时间:2023-11-03 20:13:32 25 4
gpt4 key购买 nike

要在文本输入处于事件状态时移除其边框,我可以这样做:

textarea:focus, input:focus{
outline: 0;
}

然后我如何在上面添加我自己的边框颜色?例如:

textarea:focus, input:focus{
outline: 0;
border: 1px solid red;
}

最佳答案

你可以试试这个:

textarea:focus {
outline: none;
box-shadow: 0px 0px 5px red;/*here change the color*/
border:1px solid red;/*here change the color*/
}
textarea:focus:hover {
outline: none;
box-shadow: 0px 0px 5px red;/*here change the color*/
border:1px solid red;/*here change the color*/
border-radius:0;
}
<textarea></textarea>

关于css - 更改文本输入的边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26347505/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com