-2

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.

al123
  • 561
  • 9
  • 25

2 Answers2

1

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

Community
  • 1
  • 1
Bubavanhalen
  • 128
  • 9
0
  • 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

thatuxguy
  • 2,418
  • 7
  • 30
  • 51