Is it possible to remove a table tag on a specific HTML location using only CSS? I have access only to the CSS file unfortunately.

I want to remove the image (which say "LOUIS INVESTORS RELATIONS") on the blue background here: http://louis.stockwatch.com.cy/nqcontent.cfm?a_name=fstatement&lang=en

It would be great if I could remove the whole table that contains that image.

Is it possible, and how?

有帮助吗?

解决方案

Now use to this

table tr:first-child td:nth-child(2) img {
display: none;
}

其他提示

Removing the whole table that contains that image means removing pretty much everything.

If you mean to remove the <td> that the image is within, that is possible, if you assume that no other <td> has an attribute with the background-color being set to #576f9c:

http://jsfiddle.net/YY98W/

table td[bgcolor="#576f9c"] { display: none; }
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top