1 Answers1

1

Try giving text-indent to your input fields.

CSS:

input.edit{ text-indent:4px; }

DEMO

karan3112
  • 1,867
  • 14
  • 20
  • I want to reset padding in the select element, not change it in the text field. Also a hardcoded '4px' isn't a reliable cross-browser solution. – Sebastian Nowak Aug 12 '14 at 13:07
  • I don't see any other solution to your problem. Another option is to use a custom select box using jquery. Just for your reference see this http://stackoverflow.com/q/10001291/3008050 – karan3112 Aug 12 '14 at 13:14