Lucas Germano
Lucas Germano

Reputation: 51

differences in CSS when running at localhost against remote

I'm using Internet Explorer 8 in Windows 7 Professional, like all my developer team (Visual Studiou 2010 Premium). But, in three Internet Explorer 8, I have a difference in the CSS when running at localhost mode, and in remote mode (when the application is in the server). In Localhost mode, everything works correctly, but when I access the same application at the server, I can note some differences in CSS, some controls aren't in correct place, and we can see that just with three developers of our team, and all of us use the same configuration.

The application at the server is updated.

Can someone help me ?

Upvotes: 2

Views: 1777

Answers (3)

bic
bic

Reputation: 2281

Possibly an old version of the CSS is cached locally? CTRL+F5 or empty local cache might help.

Upvotes: 2

John Saunders
John Saunders

Reputation: 161773

CSS is purely client-side. If you're getting different effects between local and remote, when using the identical browser running on the identical computer, then it means you're using different .css files and/or have different CSS in the page. You may think they're the same, but clearly, they are not.

Upvotes: -1

Adam Tuliper
Adam Tuliper

Reputation: 30152

IE is running in different compatibility modes then for each of you. Its a pain. Check out: http://support.microsoft.com/kb/956197

Upvotes: 2

Related Questions