2024-01-11, 10:24 AM
Can't i use sth. like that for the rows?
Certainly! To remove specific rows using CSS, you typically hide them using the
.latest-row {
display: none;
}
but what do I have to insert for .latest-row ??
Certainly! To remove specific rows using CSS, you typically hide them using the
display: none;
property. If your "Latest" rows have a common class, you can do something like:.latest-row {
display: none;
}
but what do I have to insert for .latest-row ??