Looking at the provided table structure:
library(DT)
datatable(
iris,
style = "default",
filter = "top",
class = "hover stripe compact"
)
I successfully modified the footer border with the following CSS code:
table.dataTable.no-footer {
border-bottom: 1px solid #ddd;
}
However, I'm faced with a challenge in adjusting the borders under the column names and just above the first row of the body. Any insights on how to achieve this?