One issue I'm facing is that the CSS code intended for one table is affecting all the other tables on my website.
Here is an example of the CSS code:
tr:last-child td:last-child {
border-bottom-right-radius:3px;
}
/*effects map*/
td {
background:#555;
Below is a snippet of HTML code as an example:
<table class="table table-condensed table-striped">
<tbody>
<tr class="accordion-toggle">
<td class="firstColumn">data1</td>
<td class="secondColumn">data2</td>