Code works in Firefox but not IE7

Discussion in 'CSS' started by lektrikpuke, Jul 26, 2007.

  1. #1
    Why doesn't this work in IE7?

    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

    <title>test</title>
    <style type="text/css">
    cs{color:#FF0000; font-weight:bold; font-family:Trebuchet MS; font-size:10pt; text-align:center}
    cs2{color:#CC0000; font-family:Trebuchet MS; font-size:10pt; text-align:center}
    </style>
    </head>
    <body>
    <cs>FREE SHIPPING</cs><br>
    <cs2>Prices Reduced!!!</cs2>
    </body>
    </html>
     
    lektrikpuke, Jul 26, 2007 IP
  2. soulscratch

    soulscratch Well-Known Member

    Messages:
    964
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    155
    #2
    Use a doctype and use valid HTML elements ???
     
    soulscratch, Jul 26, 2007 IP
  3. lektrikpuke

    lektrikpuke Well-Known Member

    Messages:
    297
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    113
    #3
    The code was generated by Frontpage (another fine MS product). I'll see if your suggestion helps. Thanks for the reply.
     
    lektrikpuke, Jul 26, 2007 IP
  4. veckd

    veckd Peon

    Messages:
    1,065
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #4
    do this
    
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    
    <title>test</title>
    <style type="text/css">
    .cs{color:#FF0000; font-weight:bold; font-family:Trebuchet MS; font-size:10pt; text-align:center}
    .cs2{color:#CC0000; font-family:Trebuchet MS; font-size:10pt; text-align:center}
    </style>
    </head>
    <body>
    <div class="cs">FREE SHIPPING</div><br>
    <div class="cs2">Prices Reduced!!!</div>
    </body>
    </html>
    
    Code (markup):
     
    veckd, Jul 26, 2007 IP
  5. lektrikpuke

    lektrikpuke Well-Known Member

    Messages:
    297
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    113
    #5
    Thanks guys.
     
    lektrikpuke, Jul 27, 2007 IP