Please see this fiddle.
Essentially, I have two divs which have float: left; and are separated by a <br/>. The problem is that the divs appear one next to the other, instead of displaying one below the other, with a space in between.
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 need
clear: left, and you can usemargin-bottom:1emto give the gap in-between if you like. http://jsfiddle.net/zn5wA/1/With
float:leftthe<br>will just appear next to the elements that are floating.