After applying CSS to one of my forms, some of the fields cannot be accessed without tabbing to them. I am applying relative positions, padding, and float. What is the likely cause of this problem?
Share
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.
When using positioning you might have positioned your form under some other element and now only click in that one instead on your form.
Try to get it on the top layer.
You can do that by specifying the z-index higher value.
input {
z-index:2;}
Or move it somewhere else
temporarily to see if it was under
some other element.