HELP!!! PORBLEM WITH IE6 border-bottom

Discussion in 'CSS' started by shmarman, Jul 1, 2007.

  1. #1
    Hi,this is my ccs code:

    .bot_bor_tr { /*-- botom border for Table Headlines --*/
    border-bottom: solid 2px;
    }

    its works on ff but not on ie. Ive created a css file just for ie but nothig seems to work.

    THe css is supposed to mkae a <tr> (in a table) a bit more width and thus thicker looking.
    HELP
     
    shmarman, Jul 1, 2007 IP
  2. frances

    frances Peon

    Messages:
    19
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try putting the width first. Also try including a color as well.
     
    frances, Jul 1, 2007 IP
  3. shmarman

    shmarman Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    does anyone have any suggestions?

    also,
    how do i get my favicon to worl on IE, it works on ff
     
    shmarman, Jul 1, 2007 IP
  4. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #4
    If that's being applied to a TR, IE on the whole will ignore the styling. In general, styling TR's is extremely unpredictable... but then, styling tables with border-collapse set to default or 'expand' (which are NOT always the same behavior - either of them) is unpredictable... whcih is why I usually resort to border-collapse:collapse; and style just the TD's.

    Though I'm thinking that class might not even be necessary - I'd have to see the full code to be sure of that.
     
    deathshadow, Jul 2, 2007 IP