My current task involves styling a web application for which we do not have access to the source code.
After navigating through the DOM, I realized that the bottom border is being applied to all rows instead of just the first row.
#tableID tbody tr td table tbody tr
{
border-bottom: solid 1px #cccccc;
}
Is there a way to apply this style only to the first row?