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
2010-02-10 15:53:17
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
2010-02-10 15:55:44