EDIT From what I've found there is no way to remove the margin... except if you either have everything on the same line or, add comments to comment out the line breaks. example:
<div>Some Text</div><!--
--><div>Some Text</div>
not the best solution but still easier to read if you have multiple lines...
-mike
Hello!
I'm working with a few div's that are set to display: inline-block and have a set height and width - In the html if there is a line break after each div there is an automatic 5px margin add to the right and bottom of the div.
example:
<div>Some Text</div>
<div>Some Text</div>
Is there a property that I've overlooked that will allow me to reset the automatic margin?
Thanks!