html - Make textarea border shadowy -


i have both textarea , input in form. border of input shadowy, while border of textarea solid. if put in border: none; textarea, there's no border @ all. want them same. can it?

for "shadowy" borders, might better off getting rid of borders altogether , using box-shadow instead. here's simple example:

input, textarea { border: none; box-shadow: 0 0 15px rgba(0,0,0,.4); } 

Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -