EDIT: I'm a doofus and I missed a = somehow. Seems to be working.
I'm trying to add a 1px border to my tables on certain pages, so I created the CSS element abtables and added the following code:
Code:
.abtables tr {
border-bottom: 1px solid #e9e9e9;
}
.abtables tr:first-child {
border-top:none;
}
.abtables tr:last-child {
border-bottom:none;
}
Of course I'm taggin the table with class="abtables" but I get no change. I must be doing something wrong. Any help is greatly appreciated!