There are spaces rendered between <div>
s as shown on this website. I've set margins, padding, borders to zero, but didn't do the trick. Are there any ways to get rid of those spacings?
Here is the code (the red border is purely for demonstration and will be removed if the problem get fixed):
<style type="text/css">
body{margin: 0 auto;}
#content{text-align:center; float:center; white-space:nowrap;}
.content-left{width:200px; display: inline-block; border:1px solid red; vertical-align:top;}
.content-center{width:950px; display: inline-block; border:1px solid red; vertical-align:top;}
.content-right{width:300px; display: inline-block; border:1px solid red; vertical-align:top;}
</style>
<div id="content">
<div class="content-left"><img src="images/imglft.jpg" /></div>
<div class="content-center">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="950" height="1000" id="index" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="index.swf" />
<param name="menu" value="false" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<embed src="index.swf" menu="false" quality="high" bgcolor="#000000" width="950" height="1000" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
<div class="content-right"><img src="images/imgrt.jpg" /></div>
</div>
apply float:left and that will remove the space so the text doesn't have to be on 1 line.
Try use font-size: 0;
on parent #content
and then return it to your font size on children like font-size: 12px;
...
Or: use word-spacing: -.43em;
on parent and return it to word-spacing: 0em;
on children ...
I tested that, and seemed it will work.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With