是否可以仅使用CSS删除特定HTML位置上的表格标签? 遗憾的是,我只能访问CSS文件。
我想删除蓝色背景上的图片(表示" LOUIS INVESTORS RELATIONS"):http://louis.stockwatch.com.cy/nqcontent.cfm?a_name=fstatement&lang=en
如果我可以移除包含该图像的整个表格,那就太棒了。
有可能,怎么样?
答案 0 :(得分:0)
现在使用
table tr:first-child td:nth-child(2) img {
display: none;
}
答案 1 :(得分:0)
删除包含该图像的整个表意味着删除几乎所有内容。
如果您要删除图片所在的<td>
,则可以假设没有其他<td>
具有将background-color
设置为{{#576f9c
的属性的情况。 1}}:
table td[bgcolor="#576f9c"] { display: none; }