13

Is CSS content property bad from SEO point of view, do search engines really scan the words which are injected using :before and :after selectors?

Take this example :

Mr.A uses CSS content property to embed the question tag in h1, so my question is do search engines scan that word in my h1 tag? am pretty much sure they don't.

Demo

<h1 class="CSS">Pure CSS Menu</h1>
<h1 class="HTML">Structure And Symantics</h1>

.CSS:before {
    content: 'CSS : ';
}

.HTML:before {
    content: 'HTML : ';
}
4

2 回答 2

6

不,就“正面”排名而言,搜索引擎并不关心您在 css、js、alt 标签甚至元标签(关键字)中放置的内容。

但是,他们会尝试检测您是否在注入垃圾邮件、设置 h1 和隐藏关键字以显示:无、在白色文本上设置白色背景等。

所以..任何与纯内容、网址和标题无关的东西都可能对您不利,但对您不利(有些黑帽可能不同意..)。

于 2013-04-14T21:26:41.303 回答
-5

只需使用lynx - 这就是搜索引擎查看您网站的方式。

至于 CSS 的东西,它会忽略它,但标记为标题的位具有更高的优先级。

有关 Google SEO 的详细信息,请参阅此 pdf

于 2013-04-14T20:32:02.493 回答