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
Post a Comment