I just want box shadow like in the design below image
And i have tried the following code for all
box-shadow: inset 0 0px 2px rgba(0,0,0,.39);
But the output was look like
I have changed the box shadow values can't get the exact ouput. Anyone help this.. Thanks.
better you use the -webkit-box-shadow
, -moz-box-shadow
& box-shadow
for the better output.
input{
width:100px;
padding:15px;
-webkit-box-shadow: inset 0px 2px 15px -5px rgba(0,0,0,0.39);
-moz-box-shadow: inset 0px 2px 15px -5px rgba(0,0,0,0.39);
box-shadow: inset 0px 2px 15px -5px rgba(0,0,0,0.39);
}
<input type="text" />