是否可以仅使用css删除特定html位置上的表标记

时间:2014-05-06 04:30:43

标签: html css image html-table

是否可以仅使用CSS删除特定HTML位置上的表格标签? 遗憾的是,我只能访问CSS文件。

我想删除蓝色背景上的图片(表示" LOUIS INVESTORS RELATIONS"):http://louis.stockwatch.com.cy/nqcontent.cfm?a_name=fstatement&lang=en

如果我可以移除包含该图像的整个表格,那就太棒了。

有可能,怎么样?

2 个答案:

答案 0 :(得分:0)

现在使用

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

答案 1 :(得分:0)

删除包含该图像的整个表意味着删除几乎所有内容。

如果您要删除图片所在的<td>,则可以假设没有其他<td>具有将background-color设置为{{#576f9c的属性的情况。 1}}:

http://jsfiddle.net/YY98W/

table td[bgcolor="#576f9c"] { display: none; }