When Chrome renders a html5 button element it creates a dropshadow and an embossed click effect. How do I get rid of these to leave me with a standard flat button?
Asked
Active
Viewed 236 times
0
-
See http://stackoverflow.com/a/15903168/342473 – Mariusz Jamro Nov 05 '13 at 13:27
-
That seems a crazy solution. Surely it would remove all inherited styles? I only want to stop chrome embossing the element and remove the dropshadow. – coolblue2000 Nov 05 '13 at 13:37
1 Answers
0
Add this border:none ;
Or this box-shadow:none ;

Diego Claudiu
- 332
- 1
- 9
-
Fantastic, It looked like it was doing more than adding a border... Thanks – coolblue2000 Nov 05 '13 at 15:36