I have designed a layout and i find some gaps in the stacking of divs over each other.
can some one help me http://uniquedl.com/3closets/about.html

and

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 this in
style.css:and you need to change the height on
.introduction .intro-messageto384px, to match the height of the image on the left.Doing this solves both problems.
As an alternative to
img { display: block }, you could instead do:img { vertical-align:bottom }. This also fixes.See this answer for a good explanation of what’s going on here.
@Alohci explains it very nicely.