how do I split a div into two rows so I can add two grids !!!! The grid which I’m using is of TMS .
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.
divs don’t really work like that (splitting into rows and columns). if you have a div, just put both grids inside.
if you need to add a line break in between, either set control2’s style to something that will break (“float:left;clear:left”) or add a
in between.
Edit
In response to your comment to another answer
I suspect you mean you want 2 columns, not 2 rows.
In this case, there’s a couple ways you can handle alignment. one way is to float the two controls —
you could also use inline-block, with possibly better results, but it would take a bit of fiddling. see this link for a treatise on aligning elements with inline-block