Valhalla Legends Archive

Programming => Web Development => Topic started by: MyndFyre on February 20, 2008, 02:49 AM

Title: CSS Glitch in Firefox; ok in IE7
Post by: MyndFyre on February 20, 2008, 02:49 AM
Take a look at http://www.robpaveza.net/blog/template.html - both in Firefox and IE.

IE displays the page exactly as I wrote the CSS: the body has no margins, and so the top is flush with the top of the browser.   It also aligns the bottom image to the right of the main centered content area (I might have tried to do a margin-right: 30px on that, but I don't want it and it wasn't being obeyed anyway).

The weird behavior in Firefox is that there is an unknown offset from the top of the browser window to the top of my content which is causing the gradients to not match up.  Also, Firefox is not obeying my margin-top requirement on the bottom div; it should be offset from the content block by 30px.

When I look at the DOM in FireBug, I don't see ANYTHING highlighted when I mouseover the top <div>, but when I mouseover the bottom <div>, the whole page lights up.

Also, HTML and CSS passed W3C validation.

Any thoughts?
Title: Re: CSS Glitch in Firefox; ok in IE7
Post by: Barabajagal on February 20, 2008, 02:58 AM
Instead of margin: 0 0 0 0; , try:
position: absolute;
top: 0px;
left: 0px;
margin: 0px;
Title: Re: CSS Glitch in Firefox; ok in IE7
Post by: MyndFyre on February 20, 2008, 11:28 PM
That doesn't work; I want the content horizontally centered.  Again, it appears correctly in IE.
Title: Re: CSS Glitch in Firefox; ok in IE7
Post by: Barabajagal on February 20, 2008, 11:37 PM
Oh, then don't do left: 0... or the position: absolute... crap. I don't know.
Title: Re: CSS Glitch in Firefox; ok in IE7
Post by: Replica on July 24, 2008, 03:55 PM
Do this

in the style sheet for

body {
margin:0;
padding:0;
text-align:center;
}

then for a main "wrapper" of the site add

#wrapper (or whatever you call yours) {
margin:0 auto;
text-align:left;
width:(whatever)
}

Title: Re: CSS Glitch in Firefox; ok in IE7
Post by: Dale on July 25, 2008, 07:40 PM
If you want the content box horizontally aligned, set the body {text-align: center;} and your contentbox to {margin-left: auto; margin-right: auto;}
Title: Re: CSS Glitch in Firefox; ok in IE7
Post by: Imperceptus on October 26, 2009, 04:34 PM
Also the wierd offset is because one of your browsers doesn't compensate correctly for the scrollbar on the side of the screen.

Firefox isn't so reliable anymore. I test with google chrome and IE.