Is there a way to hide a particular table that does not have a class by using the table styling to select?
For example if I had a table with this name
<table border="0" cellspacing="0" cellpadding="0" width="300" height="100">
or
<td colspan="3">
I do not have access to the html and cannot use javascript, must be a css solution.
If you’re willing to sacrifice IE 6 compatibility, you can to it based on attributes with the attribute selector. For example:
Otherwise, you could try to select the table based on the context (e.g.
div.container div.innercontainer table).