前端之家收集整理的这篇文章主要介绍了
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