문제

but having problems viewing it on ie.

how can i make my code good for ie

what is the best way

this is an example

http://jsfiddle.net/Jntuw/

might be

h1 {
color: #A9218E;
font-family: 'LeagueGothic';
 font-size: 2.9em;

}

the header changes in ie9

sometimes the border shows lines.

도움이 되었습니까?

해결책 2

  • Take out the inline styles and add to your stylesheet.
  • Style the table in the CSS.

    table {border:0;}

    th {}

    td {}

http://www.w3schools.com/css/css_table.asp - this should help

다른 팁

You could try something like this:

Just put this in your header!

    <!--[if IE 9]> IE 9 style content goes here <![endif]-->

Target IE9 Only via CSS

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top