I have an input field with a fixed height. The text is vertically centered, but I want it at the top left of the input.
CSS
.wideInput{ text-ali
Your padding is causing the text to begin 0.4em from the left hand side. If you want the text to be truly left-aligned, remove the padding on the left:
.wideInput{ text-align: left; padding: 0.4em 0.4em 0.4em 0; width: 400px; height: 200px; }