I have a form which has expanded beyond the desired height in IE6 only 🙁
Please view this fiddle for the problem:
I don’t see an issue in other browsers.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your issue resides in the fact that your
h3is too wide and yourinputsare pushed below it, which you then use relative positioning to pull them back up. Restyle the h3 to bedisplay: inlineor at least narrow its width and then restyle theinputsto not have to reposition them. That will get you toward what you seek.