Ok in firefox, wrong in IE

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
andrei.mita
Forum Commoner
Posts: 65
Joined: Sun May 08, 2005 4:06 am
Location: Barlad/Romania

Ok in firefox, wrong in IE

Post by andrei.mita »

My CSS knowledge is limited, just learning and this is my first real problem. I develop under Suse and what I wrote works fine in FF but very wrong under IE. Can someone suggest a solution?

Code: Select all

 /* MAIN BODY STYLE */body {  margin: 0px;  padding: 0px;  background: #fff;} #header {  background: #dfe8f7;  width: 800px;  height: 10%;  position: absolute;  top: 0px;  left: 50%;  margin-left: -400px;}  #content {  background: #aaa;  overflow: auto;  width: 800px;  height: 80%;  position: absolute;  top: 10%;  left: 50%;  margin-left: -400px;} #footer {  background: #dfe8f7;  clear: both;  width: 800px;  height: 10%;  position: absolute;  top: 90%;  left: 50%;  margin-left: -400px;} /* MAIN BODY STYLE - END */ /*CONTENT SUB-DIVS*/#display {  background: #fff;  overflow: auto;  width: 600px;  height: 80%;  position: absolute;  top: 0%;  left: 50%;  margin-left: -400px;} #authentication {  background: #cba;  overflow: hidden;  width: 200px;  height: 25%;  position: absolute;  top: 0%;  left: 50%;  margin-left: 200px;} #standings {  background: #fab;  overflow: hidden;  width: 200px;  height: 25%;  position: absolute;  top: 25%;  left: 50%;  margin-left: 200px;} #news {  background: #baf;  overflow: hidden;  width: 200px;  height: 25%;  position: absolute;  top: 50%;  left: 50%;  margin-left: 200px;} #articles {  background: #fad;  overflow: hidden;  width: 200px;  height: 25%;  position: absolute;  top: 75%;  left: 50%;  margin-left: 200px;} 
User avatar
pickle
Briney Mod
Posts: 6445
Joined: Mon Jan 19, 2004 6:11 pm
Location: 53.01N x 112.48W
Contact:

Re: Ok in firefox, wrong in IE

Post by pickle »

I have no idea what you're trying to accomplish, or what the actual problem is.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
User avatar
califdon
Jack of Zircons
Posts: 4484
Joined: Thu Nov 09, 2006 8:30 pm
Location: California, USA

Re: Ok in firefox, wrong in IE

Post by califdon »

When you ask for help to solve a technical problem, the first thing you need to do is explain what the problem is.
andrei.mita
Forum Commoner
Posts: 65
Joined: Sun May 08, 2005 4:06 am
Location: Barlad/Romania

Re: Ok in firefox, wrong in IE

Post by andrei.mita »

Yes, it was a dumb post from me, sorry for that. Probably because I was working late. Thanks anyway, I've dropped the issues as the design was bad from the beginning.
Post Reply