0

check out this and if you click on one of the inputs at the top some jquery will happen. Now you can see my issue, which is the text "Message:" should be aligned with the top of the textarea to its right.

Thanks!!

Lee Taylor
  • 7,761
  • 16
  • 33
  • 49
dezman
  • 18,087
  • 10
  • 53
  • 91
  • There are many question and answers on vertical alignment of text. Such as this: http://stackoverflow.com/questions/2939914/vertically-align-text-in-a-div or this: http://stackoverflow.com/questions/1839403/how-do-i-align-a-label-and-a-textarea?rq=1 – 3dgoo Jan 02 '13 at 23:41

1 Answers1

1

This bit of css applied to the textarea works:

CSS

vertical-align: top;
3dgoo
  • 15,716
  • 6
  • 46
  • 58