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

javascript - three.js lot of meshes optimization -

smartface.io - Proper way to change color scheme for whole application -

Email notification in google apps script -