You can target the td of the table you want by being more specific in your CSS.
So in the opening table tag where you want td borders, give it a class such as <table class="myTable">
And target it in your CSS like this;
Code:
table.myTable td {
border-right: 1px dotted #99493e;
border-bottom: 1px dotted #99493e;
}
To be even more specific, give all the tds (that you want to have borders) a class <td class="myBorder"> and target them like this;
Code:
td.myBorder {
border-right: 1px dotted #99493e;
border-bottom: 1px dotted #99493e;
}
Bookmarks