Posted By: jsampsonPC | Jul 10th, 2006 @ 4:12 AM
page 2 of 2
Comments: 34 | Views: 2650
Sven Groot
Sven Groot
My name has 9 letters. Coincidence? I think not...
jsampsonPC wrote:

BruceMorgan wrote: Are you using quirks mode or strict mode?


Are you refering to CSS? This isn't a CSS issue from what I understand - but I could be wrong.

Quirks mode vs. strict mode mainly affects CSS but also a few other things so it's definitely important to know. In case you didn't know, which mode is used depends on the DOCTYPE present in the HTML file. A HTML4.01 DOCTYPE (with both the public and system identifiers present) or higher (or an unknown DOCTYPE) will cause it to use strict mode. No DOCTYPE or an older one will cause it to use quirks mode.

An easy way to find out is to put the following script in your page:
<script type="text/javascript">
   alert(document.compatMode);
</script>

This'll prompt either "BackCompat" (quirks mode) or "CSS1Compat" (strict mode).
Hi, I have been searching all over for a discussion/resolution on this.  I realize this is an older post, but have you found a way to solve this rendering without having to put all of your images on the same line of code in the editor?  Thanks
stevo_
stevo_
Human after all

display: block usually works.. but if not, use floating.. its not just an IE thing either..

stevo_
stevo_
Human after all

Firefox and IE do this with lists.. ie puts spaces in everything.. but firefox tends to put spaces above the list items.. you tend to only notice it when using lists to do horizontal menus.. floating always fixes the problem anyway.

turrican
turrican
Condemnation without investigation is the height of ignorance! - Albert Einstein

Yepp..

But hm... unless you need to use IE6, perhaps it is time to ditch the TABLE. The road was very hard for me, but I am very happy that I did ditch the TABLE now, no more mess! =)

wisemx
wisemx
Live it
Flashback: 9 years ago when the battle was between IE and Netscape 4 we, Classic ASP developers using early stages of XML, had to make sure all closing "td" tags where at the end of each line or there would be carriage returns in Netscape.
This caused table layouts, like rounded corners, to fail in Netscape.
Rowan
Rowan
Look, no errors.
There's another method that works well for images - img { vertical-align: top; }
page 2 of 2
Comments: 34 | Views: 2650
Microsoft Communities