http://www.lethalmonk6.byethost24.com/index.html

If you inspect with firebug the spacing between the "project-link" divs, there are a few pixels of added margin between each div. I have the margin set to 20 px, and then these little bits gets added on. Where is it coming from?

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

You're using display:inline-block so the white space between the elements is what you are seeing there. You can either remove the white space between the divs or use float: left instead.

To elaborate... if you're using display: inline-block do this:

<div></div><div></div>

Instead of this:

<div></div>
<div></div> // White space is added because of the new line
link|improve this answer
Is there a way I can remove the space? – user1077937 Dec 6 '11 at 2:30
Yes, by actually making the divs adjacent in your markup without any spaces or line breaks between them. See my added example... – Lucifer Sam Dec 6 '11 at 2:33
thank you for the explanation. – user1077937 Dec 6 '11 at 2:34
You're welcome. Please don't forget to mark my answer as accepted if it solved your problem. – Lucifer Sam Dec 6 '11 at 2:37
feedback

As Terminal Frost said, add float: left to the class, and remove display: inline-block. Additionally, add content: "." to the parent div container to fix the wrapping issue you'll have from doing that.

link|improve this answer
content: "." doesnt really fix my wrapping issue, maybe I am not using it correctly? – user1077937 Dec 6 '11 at 2:50
You should put content: "." on the <div id="container"> element. – Nathan Hoad Dec 6 '11 at 3:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.