I have read a couple of articles about styling the placeholder of an input field using ::-webkit-input-placeholder in HTML5. It works perfectly, except for one thin
::-webkit-input-placeholder
You have to add 'overflow: visible' to the placeholder in your css to get rid of the cropping.
::placeholder{ overflow: visible; }