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!

enter image description here

try :

textarea {     border: none;     overflow: auto;     outline: none;      -webkit-box-shadow: none;     -moz-box-shadow: none;     box-shadow: none; } 

Comments

Popular posts from this blog

Email notification in google apps script -

c++ - Difference between pre and post decrement in recursive function argument -

javascript - IE11 incompatibility with jQuery's 'readonly'? -