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
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.