1

想知道搜索引擎是否会对所有图像都设置为背景图像的页面有任何问题,以及它是否会正确地找到并索引每张图片下的“标题”(即 CSS 内容标签)。我真的不在乎搜索引擎是否找到背景图像,但我想让它们索引标题。

<style>
#cimg {width: 400px; height: 300px; background: #000; padding: 0px;}
#ctxt {font-size: 1.0em; text-align:center;}
#cimg .wc1 {width: 400px; height: 300px; background: url(http://192.168.0.1/pic1.jpg) no-repeat; background-size:contain;}
#ctxt .wc1:before {content: "This is Picture 1";}
#cimg .wc2 {width: 400px; height: 300px; background: url(http://192.168.0.1/pic2.jpg) no-repeat; background-size:contain;}
#ctxt .wc2:before {content: "This is Picture 2";}
</style>
<table>
<tr>
<td>
<div id="cimg"><div class="wc1"></div></div>
<div id="ctxt"><div class="wc1"></div></div>
</td>
<td>
<div id="cimg"><div class="wc2"></div></div>
<div id="ctxt"><div class="wc2"></div></div>
</td>
</tr>
</table>
4

1 回答 1

2

没有理由期望搜索引擎索引样式表中的任何字符串,无论是内容属性值还是其他地方。所以问题中的代码片段对于搜索引擎来说看起来完全是空的。

没有法律禁止在搜索引擎中处理和解释样式表,并且有传言说他们这样做在某种程度上是为了检测欺骗他们的企图(例如,使用 CSS 对用户隐藏文本)。但是他们似乎没有任何可以想象的动机来提取用于 CSS 生成内容的字符串。

于 2013-10-22T21:49:20.297 回答