css – 从textarea中删除所有样式(边框,发光)

前端之家收集整理的这篇文章主要介绍了css – 从textarea中删除所有样式(边框,发光)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从textarea中删除样式,如果可能的话,将其全部白色,没有任何边框或发光。我尝试过在这里发现的不同的东西,但没有任何作用(用FF和Chrome尝试)。

那么,是否有可能,如果是这样做呢?

我到目前为止所尝试的:

textarea#story {
  // other stuff
  -moz-appearance:none;
  outline:0px none transparent;
}

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

*:focus {
    outline: 0;
}

解决方法

发光效果最有可能受到盒子阴影的控制。除了添加Pavel所说的内容,您可以为不同的浏览器引擎添加Box-shadow属性
textarea {
    border: none;
    overflow: auto;
    outline: none;

    -webkit-Box-shadow: none;
    -moz-Box-shadow: none;
    Box-shadow: none;
}

您也可以尝试添加!重要的是优先考虑此CSS。

原文链接:https://www.f2er.com/css/219838.html

猜你在找的CSS相关文章