Hi to all members,
I have reading about the point that Matt Cutt describes, he says that using display:none property in CSS for keyword stuffing can penalizes site. I want to ask a simple question around this matter.
I know that display:none will penalizes site if its uses in the following way:
But what if I use the same thing in CSS class like this:
and in HTML like:
I am waiting for the answers and thanks in advance.
Reference Links:
google dot com/support/webmasters/bin/answer.py?answer=66353
I have reading about the point that Matt Cutt describes, he says that using display:none property in CSS for keyword stuffing can penalizes site. I want to ask a simple question around this matter.
I know that display:none will penalizes site if its uses in the following way:
HTML:
<div style="display:none;">my keyword 1, my second keyword, my other keywords</div>
Code:
/* CSS Document */
.myspecial {display:none;}
HTML:
<div class="myspecial">some ordinary text with my keywords to mainly target</div>
Reference Links:
google dot com/support/webmasters/bin/answer.py?answer=66353