我想从文本区域中删除样式,如果可能的话,将其全部留白,没有任何边框或辉光。我尝试了在SO上找到的其他内容,但没有任何效果(尝试使用FF和Chrome)。
那么,有可能吗?
到目前为止,我已经尝试过:
textarea#story {
// other stuff
-moz-appearance:none;
outline:0px none transparent;
}
textarea:focus, input:focus{
outline: 0;
}
*:focus {
outline: 0;
}