我有一個非常困難的時間獲取:鏈接和:訪問以處理我的鏈接。我一直在網上搜索幾個小時,並閱讀了20多個同樣問題的不同實例。奇怪的是,:懸停和:主動正在工作。到底是怎麼回事?CSS:鏈接和:訪問不起作用
下面是我的樣式表的代碼行:
H1 { text-align: center; width:1000px; font-size: 30pt; font-weight: bold; }
a.artlinks:link {color:#40C0FF; text-decoration: none; font-family: Cambria, Arial; }
a.artlinks:visited { color:#FF00FF; text-decoration: none; font-family: Cambria, Arial; }
a.artlinks:hover {color:#98D7F6; text-decoration: none; font-family: Cambria, Arial; }
a.artlinks:active {color:#FF0000; text-decoration: none; font-family: Cambria, Arial; }
,當我把它在我的.html代碼:
<h1><a href="helloworld.html" class="artlinks">Hello World!</a></h1>
有沒有人有一個解決方案,也更高效如何同時給出常用的a.artlinks參數?謝謝
使用正確的html! 'code'
helloworld
'code' – 2015-02-09 10:10:57link working for me。 - http://jsfiddle.net/n0qo7ybp/1/ – 2015-02-09 10:20:05
kasper爲什麼不告訴我如何實際插入html標籤,因爲當我寫出我的帖子時,它顯示的是字面單詞「hello world」而不是代碼 – 2015-02-09 20:03:11