我對shantiyoga.ca主導航圖像與隱藏與隱藏鏈接樣式化導航
<li><a class="schedule" href="/schedule"><span class="hide">shanti yoga studio class schedule</span></a></li>
什麼是隱藏鏈接在搜索引擎優化方面的最佳實踐自己的定位標記文本內容的堆棧?
我已經閱讀過Google的General Guidelines,我想知道除了被列入黑名單之外是否還有一個處罰,我不知道。隱藏我的定位標記的內容是否會以負面方式影響我的網站?或者,谷歌是否足夠聰明地看到事物的建立方式並讓它成爲現實?
我還以爲this article了一些有趣的信息
編輯 - 我的當前設置:
<a class="schedule"
id="{% ifequal current 'schedule' %}active{% endifequal %}"
href="/schedule"><span class="hide">class schedule</span></a>
a.schedule {
background: url(../images/layout/nav/shanti-yoga-studio-schedule.jpg) no-repeat;
display: block;
height: 48px;
}
a.schedule:hover {
background-position: -207px 0;
}
#active {
background-position: -414px 0;
}
不是直接回答你的問題,但你可以考慮通過Google Web Fonts或類似的方法來實現自定義字體,以完全避免這個問題。然而,那就是說,我已經看到了你的一般技術使用了很多次,但通常是通過將文本置於屏幕外,而不是使用明確的「display:none」。 – justis