Results 1 to 4 of 4

Thread: How to prevent diffences between browsers

  1. #1
    Join Date
    Apr 2009
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question How to prevent diffences between browsers

    I need Help. When I make website. Sometimes on Explorer and Firfox result not same. Why?

    Can anyone help me?

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    because the browsers have different css settings. Firefox works the way your code is supposed to, but IE has its own way of doing things; so write your site for Firefox and then experiment with changes to make it work in IE also. The css forum is a great place to figure out individual fixes for IE problems.

  3. #3
    Join Date
    Apr 2009
    Posts
    17
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    Yes the IE Firefox display is a problem sometimes. Try this it fixes a lot of the problems for me . Put this at the top of your CSS
    Code:
       * {
    margin: 0px;
    padding: 0px;
    }
    This will let you write your own CSS with minimal browser interference. Hope that helps.
    Last edited by Snookerman; 04-23-2009 at 07:27 AM. Reason: added [code] tags

  4. #4
    Join Date
    Apr 2009
    Posts
    17
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    You might also find this reading helpful.
    http://www.dynamicdrive.com/forums/a...p/t-35179.html

    Good Luck

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •