html - Remove borders around textarea and input fields? -
i have following problem - textarea , input fields semitransparent, can't remove border around them completely. tried making transparent borders or specifying border: none; not disappear (see image below)
anyone knows solution?
thank you!

try :
textarea { border: none; overflow: auto; outline: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
Comments
Post a Comment