View Single Post
10-16-2005, 07:45 AM
#2
<Isurfr> is offline <Isurfr>
Status: Member
Join date: Aug 2005
Location: w3c
Expertise:
Software:
 
Posts: 193
iTrader: 0 / 0%
 

<Isurfr> is on a distinguished road

  Old

I think the main problem is designing for all these browsers.
Theres so many ways to code things that you may see one
code as valid but its all about how the browsers interpret
the code. You spend all this time coding then when you
check on other browsers your going crazy because it adds
3 hours of you thinking of different variables of code to add
something so simple as:

body {
margin:0;
border:0;
}
just to get it to work in Opera.

I have seen bugs in Opera when coding but always find a variable
of recoding it to get it to work in all these browsers to design for.


Opera
Mozilla
FireFox
Internet explorer
Netscape
Safari
Camino
There have been issues where IE and Firefox are fine and Opera isn't.
Then there are times when Opera and Firefox are fine and IE isn't.
And the next combination as well.

For the issue above I use this:


#container {
position:fixed;
margin:0;
top:0px;
left:0px;
}
_|