After some review of the code, I removed the unnecessary properties that led to the empty rules.
So, I know something like this:
table.foo
{
}
table.foo td.bar
{
padding: 5px;
}
Now, what would be the best way to act on this empty table rule? Delete it or leave it? Is there a requirement that a parent declaration can define child elements on them? It really works without it, simple, but maybe there are some validation considerations? Any input is appreciated.
source
share