I have in an HTML page many tables, some of which are using only tr & td
others are using everything they can: thead, tbody, tfoot, tr, th & td
.
Because some issues we are using a CSS rule to make the top and left border of the table and every td
has its own right and bottom border.
Because this particular thing we need to get the td
's in all four corners and round their specific corner.
How can I do a single rule that can select only the first row in the table?
I'm using this rule so far:
table.unit tr:first-child td:first-child, table.units thead tr:first-child th:first-child {
border-top-left-radius: 10px;
}
table.unit tr:first-child td:last-child, table.units thead tr:first-child th:last-child {
border-top-right-radius: 10px;
}
In this jsfiddle you can see my problem: (http://jsfiddle.net/NicosKaralis/DamGK/)
- is there a way to solve the 2 implementations at the same time?
- if there is, how can I do it?
- if not, can you help me figure the best way to do it?
P.S.: I can change the element of the tables, but it will make so much more refactoring in third party libraries, so we want not to change that.