Can someone tell me why

liunx

Guest
Can someone tell me why this site has spaces in FF and none in IE? <!-- w --><a class="postlink" href="http://www.rgabbard.com/temp1">www.rgabbard.com/temp1</a><!-- w -->. It doesn't validate: meta and img tags must be closed.
2. Change this: img{border:none;vertical-align:bottom;}
Images, Tables, and Mysterious Gaps (<!-- m --><a class="postlink" href="http://devedge.netscape.com/viewsource/2002/img-table/">http://devedge.netscape.com/viewsource/2002/img-table/</a><!-- m -->)Thank you so much.Another common occurance is if you close the current cell on a different line then you began it on. Something to do with the carriage return that the browser incorrectly renders. So....

<td>
<img src=http://www.webdeveloper.com/forum/archive/index.php/"myPic.jpg" />
</td>

would have the space under it. But it has been my experience that its easily fixed with...

<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"myPic.jpg" /></td>KarmaKills, the site is designed in CSS, not Tables. ;)But if you dont do that with the images, there will be a space with inbetween the images, so it is nice to know.I didn't say it wasn't helpful information, I just thought I'd mention that the layout isn't in tables. ;) But, just in case it sounds like I'm being big headed, thanks for the input, KarmaKills. :)
 
Back
Top