I have to add child div elements to #mainHolder div dynamically. There should be only three divs in a row. I am doing it using “clear” approach as shown in http://jsfiddle.net/Lijo/ZkLg6/20/.
Is there a better CSS way for doing this?
Reference:
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.
You may add
clear: left;to your.firstDivclass. This way you will not need to add another div withclear:both;Here is an updated JSfiddle.