tags:

views:

46

answers:

2

border-bottom for tr is not working in ie...

A: 

check this question please search the question before posting it

good luck... happy programming..

piemesons
A: 

You're providing very little detail about your question. However, I think what you need to do is set the border on the table cells. Assuming you have a class on the tr this CSS should work:

tr.className td { border-bottom: 1px solid #ccc; }

Or, if it's for all rows in a table:

table.className tr td { border-bottom: 1px solid #ccc; }
DisgruntledGoat