If for example I want to have 2 rows of 6 textboxes and 1 initial row of textboxes how using CSS do I define the height/space between the textboxes so they are consistently spaced.
Or should I just use a table?
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.
Check this fiddle – http://jsfiddle.net/g4CWC/34/
For each textbox provide css with same margin, For instance:
You can add all the textboxes in a
<div>and provide css asNow If you resize the window spaces between the text box will remain the same.