Kat wrote: > What is the code I have to add or delete to make an image or table flush > with the browser window? No edging at all... I'm trying to make a "pseudo > frame" image at the top of the page and don't want any dead space above or > beside the image.
To get a 0px margin in all browsers including N4, add this to your body tag: topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" The first part is for IE and the second part is for N4. You can also do it with CSS, by putting margin:0px in the body styles, that doesn't work in N4, but does in IE and N6. alice ttlg http://idiotbox.populli.net/ ~ * ~ * ~ ~ * ~ * ~ ~ * ~ * ~ ~ * ~ * ~ ~ * ~ * ~ Complex calculations and loading of huge amounts of data will be accomplished in under three seconds. Movie modems usually appear to transmit data at the speed of two gigabytes per second. -- Things Computers Can Do in Movies _______________________________________________ Fanficwebdesign mailing list [EMAIL PROTECTED] http://populli.net/mailman/listinfo/fanficwebdesign_populli.net
