- From: Stephanos Piperoglou <stephanos@hol.gr>
- Date: Wed, 28 Aug 1996 10:34:19 +0300 (EET DST)
- To: Brent Eades <beades@ottawa.net>
- cc: David Perrell <davidp@earthlink.net>, www-html@w3.org
On Thu, 1 Jun 1995, Brent Eades wrote: > On 25 Aug 96 , www-html@w3.org wrote: > > > Another peeve I have with NSN is that you can't get rid of margins > > in tables. When border, padding and spacing are set to zero, MSIE > > will butt graphics together between two rows of a table. NSN puts > > about four pixels between them. > > Yeah, I encountered this too, but *could* fix it in NS, at least with > ver. 1.22 or 2.0. > > With the only attributes set for <table> as "border=0", I do indeed get padding of > roughly 4 pixels between images. > > When I add "cellpadding=0" to that, the margin shrinks by about half; > when I add "cellspacing=0" to the preceding, I get images that abut > without margins at all. Both of you are getting this entirely wrong. As a matter of fact, NS is the most correct in this respect. The problem is not border, padding and spacing but *WHITESPACE* which is collapsed into a single space character between the images. If you make sure there is no whitespace between your tags then everything will be OK. If you insist on organising your HTML source so that it's readable (as I do) you can try using a lot of /TD and /TR tags or using whitespace inside tags. Example <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0> <TR><TD><IMG SRC="img1.gif"><TD><IMG SRC="img2.gif"></TD> <TR><TD COLSPAN=2><IMG SRC="img3.gif"></TD> </TABLE> Note the /TD's used to make sure the newlines are not part of the cell. This layout should get you no space between images (and cells). IE is wrong in rendering other layouts as such; HTML clearly states that all whitespace collapses into one, breakable, space. = Stephanos Piperoglou = stephanos@hol.gr = http://users.hol.gr/~stephanos/ = Four lines in a .sig can't say enough about why you should visit my page! "I want peace on earth and good will toward man" "We're the United States Government, we don't do that sort of thing!" [ from the film "Sneakers" ] ...oof porothika! (tm)
Received on Wednesday, 28 August 1996 03:35:45 UTC