css3 – 如何在Bootstrap 3中更改textarea的焦点发光?

前端之家收集整理的这篇文章主要介绍了css3 – 如何在Bootstrap 3中更改textarea的焦点发光?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果关注Bootstrap 3输入和textareas,我想改变蓝色光晕.

我尝试添加this

textarea:focus,input:focus,input[type]:focus,.uneditable-input:focus {   
    border-color: rgba(229,103,23,0.8);
    Box-shadow: 0 1px 1px rgba(229,0.075) inset,0 0 8px rgba(229,0.6);
    outline: 0 none;
}

到我的costum.css,但它只改变输入字段的光晕,而不是textarea.
我也试过this,

.input:focus {
    outline: none !important;
    border:1px solid red;
    Box-shadow: 0 0 10px #719ECE;
}

什么都没改变.

我不是一个CSS精明的人,所以感谢你的帮助.

解决方法

尝试使用:
textarea:focus,0.8) !important;
    Box-shadow: 0 1px 1px rgba(229,0.6) !important;
    outline: 0 none !important;
}
原文链接:https://www.f2er.com/css/215259.html

猜你在找的CSS相关文章