treehouse : what would you like to learn today?
Web Design Web Development iOS Development

how i can solve browser problem

  • i have complete a index page which is without distortion in mozilla .but i found many bugs in IE7.how i can solve it.
    please response me.
  • You could start by posting a link.
  • I usually use different stylesheets for IE using Conditional comments. First, i load my main stylesheet, then i load the IE stylesheet using these lines :

    <!--[if IE 7]>
    Your IE stylesheet
    <![endif]-->

    This part of the code will only be read if you are using IE 7 browser. So, in your IE stylesheet, you only have to put the css rules that need to be overided to make it work in IE 7.