Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't add box-shadow to input elements

Tags:

css

I don't seem to be able to add box shadows to input elements, my CSS is kind of like this http://jsfiddle.net/DLCTh/ and as you can see it applies correctly on div elements but not on text inputs, am I missing something? Or is it that I can't do this?

like image 891
Javier Villanueva Avatar asked Aug 16 '11 22:08

Javier Villanueva


1 Answers

add

border:0

or

border:none

http://jsfiddle.net/DLCTh/1/

like image 193
MikeM Avatar answered Oct 14 '22 05:10

MikeM