style to Netscape

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
Gerald
Forum Newbie
Posts: 1
Joined: Thu Jul 10, 2003 3:10 am

style to Netscape

Post by Gerald »

Hi

I have brilliant codes which works fine in IE, but not in NN. The problem is that I use a lot of code where I have fixed positions, i.e. style="position:absolute; top:100px; left:100px;

What is the NN match for something like style="position:absolute; top:70px; left:520px;?

tx
User avatar
trollll
Forum Contributor
Posts: 181
Joined: Tue Jun 10, 2003 11:56 pm
Location: Round Rock, TX
Contact:

Post by trollll »

I used to rattle this info off the top of my head, but I've kept up more with the back-end of things lately. Check out w3school's css2 reference page, which has compatibility for each css property with Netscape and IE. Unfortunately, they don't have other browsers on it, but it should help at any rate. You may find something useful somewhere in Netscape's developer site, too.
User avatar
daven
Forum Contributor
Posts: 332
Joined: Tue Dec 17, 2002 1:29 pm
Location: Gaithersburg, MD
Contact:

Post by daven »

Query: In the code, do you have a closing double-quote?
If not, NN/Mozilla will not interpret the code correctly, since they break on syntax errors. Other than that, I cannot think of any reason why it should not work. That is nearly identical to my code, and I develop under Mozilla.

style="position:absolute; top:100px; left:100px;"
Post Reply