Topic: Netscape 6 Image Table Spacing (Page 1 of 1) |
|
---|---|
Nervous Wreck (II) Inmate From: Sunnyvale, California (USA) |
posted 11-19-2001 09:25
Has anyone encountered any peculiar spacing of images in tables under Netscape 6? It seems that I did something at some point that made Netscape 6 put spaces in some table cells which do not belong there. That or Netscape 6 changed (I amcurrently using Netscape 6.2 under Windows). Either way, I already tried adjusting the cell span properties and I am just not seeing the problem, so perhaps some fresh eyes might help. |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 11-19-2001 20:40
Instead of using HTML Strict document type, use HTML Transitional document type (i.e. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ) and all gaps in tables will go away... |
Nervous Wreck (II) Inmate From: Sunnyvale, California (USA) |
posted 11-22-2001 22:10
Thanks, but I am trying to move forward by working with HTML 4.01 Strict. I have already done countless pages in HTML 4.01 Transitional. |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 11-22-2001 22:50
Personally, I don't care about HTML strict document type. There are still so many cross browser issues that can be resolved only by using non standard tags. Anyway, using HTML strict document type can only create trouble. Depending on web browser page will be rendered differently since each browser has different renderings for standards & quirks mode (read the article from the link that I posted above). |
Nervous Wreck (II) Inmate From: Sunnyvale, California (USA) |
posted 11-28-2001 07:52
With no DOCTYPE, it is not truly HTML 4.01 Strict. |
Maniac (V) Inmate From: A little lower... lower... ahhhhhh, thats the spot |
posted 11-28-2001 09:55
deleted your accidental new topic |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 11-29-2001 19:23 |
Nervous Wreck (II) Inmate From: Sunnyvale, California (USA) |
posted 12-08-2001 11:11
Eureka! I don't know if this will work all of the time (I have not yet tested it extensively), but the following will tell Netscape 6 and Mozilla to stop being stupid about spacing: |
Nervous Wreck (II) Inmate From: Sunnyvale, California (USA) |
posted 12-08-2001 23:31
One Problem With The Above Method: |
Paranoid (IV) Inmate From: Milwaukee |
posted 12-09-2001 02:48
I'm not positive what you're doing with your tables, but it sounds like you're using them to position graphics. That, in itself, is a violation of the intent behind the "strict" HTML interpretation. If you're using the Strict definition, tables should be used only for the presentation of tabular data. CSS is your answer to everything else. |
Nervous Wreck (II) Inmate From: Sunnyvale, California (USA) |
posted 12-12-2001 09:43
If CSS positioning were more reliable, I might use it more, but there are still some problems and composite images would look terrible if displayed in linear fashion in a non-CSS browser, so yes, I am still using tables for some image positioning. My code still validates as HTML 4.01 Strict. |
Paranoid (IV) Inmate From: Milwaukee |
posted 12-16-2001 13:33
Understood. My objection is one of theory rather than of practice: if your document's code is transitional (and if it uses non-web-standard code to remedy the weaknesses of old browsers, it is transitional), why not simply use the Transitional doctype? There's no shame in it, and there are no bragging rights involved in using the Strict doctype on a document that does not adhere strictly to the HTML/CSS standard. |
Nervous Wreck (II) Inmate From: Sunnyvale, California (USA) |
posted 12-18-2001 10:25
Although CSS positioning may be recommended, the HTML 4.01 Strict specification does not limit what can be placed within tables. Eventually, I may do away with them except for boring chart use anyway--my new site does not currently use any--but the W3C validator says everything is fine even when non-text content is within tables, so I say it is fine too. |