Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tables in IE and Netscape 6

Status
Not open for further replies.

mrgone4662

Technical User
Feb 21, 2002
16
US
I'm having some trouble getting a page to view properly in IE 6 and Netscape 6 (the only other browser I've tried it in so far has been Opera 6, which worked perfectly.)

You can see down at the bottom, a little bit of the table background image shows down past the last row. Oddly this happens with both of the lower corner images in IE and only the left corner in Netscape. How can I get the corner images to hug the very bottom of the table?


Thanks! -- cut here --
 
Hi,

try eliminating and spaces in your code.
So istead of:
<td align=&quot;right&quot; class=&quot;bottom&quot;>
<img src=&quot;houseconcert/images/bottomright.gif&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; border=&quot;0&quot;>
</td>

Try:
<td align=&quot;right&quot; class=&quot;bottom&quot;><img src=&quot;houseconcert/images/bottomright.gif&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; border=&quot;0&quot;></td>



Should work, just one of those funny browser things!


É
<!--#include file=&quot;profound quotation&quot; -->
 
Thanks for the tip! Seems to work, though my feelings on this are pretty conflicted. I'm happy it works, but very very angry that browsers are reading whitespace like that.

I usually use a ton of white space to make the code readable. I guess I have to rethink my &quot;good&quot; habits. -- cut here --
 
Hi,
seemingly its an old browser problem, they convert line breaks and such like into single spaces, so if you have a line break in your code, such as before and after an image code it changes this into spaces, hense that bloody annoying table problem.
I always get the same problem!


É
<!--#include file=&quot;profound quotation&quot; -->
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top