用css设置超链接文字,在本地显示正常,传到远程服务器没效果,怎么回事?_html/css_WEB-ITnose
程序员文章站
2022-04-14 11:12:09
...
用css设置超链接文字,在本地显示正常,传到远程服务器没效果,怎么回事?
注意,link visited hover active 顺序不能变
a.yangshi:link {color: #00F;text-decoration:none;} /* unvisited link */
a.yangshi:visited {color: #00F;text-decoration:none;} /* visited link */
a.yangshi:hover {color: #F00} /* mouse over link */
a.yangshi:active {color: #00F} /* selected link */
回复讨论(解决方案)
缓存、文件编码、浏览器兼容模式等
缓存、文件编码、浏览器兼容模式等
不是缓存问题,浏览器兼容应该也不是,编码怎么弄?
你哪些样式没效果?
class="STYLE10"
地方文字颜色不是红色的?
你哪些样式没效果?
class="STYLE10"
地方文字颜色不是红色的?
a.yangshi:link { text-decoration: none; color: green}
a.yangshi:active { text-decoration:blink}
a.yangshi:visited { text-decoration: none; color: green}
a.yangshi:hover { text-decoration:underline;color:green}
a.top:link { text-decoration: none; color:#FFFFFF}
a.top:active { text-decoration:blink}
a.top:visited { text-decoration: none; color:#FFFFFF}
a.top:hover { text-decoration:underline;color:#FFFFFF}
这些没效果
那可能是你使用的问题了
注意,link visited hover active 顺序不能变
a.yangshi:link {color: #00F;text-decoration:none;} /* unvisited link */
a.yangshi:visited {color: #00F;text-decoration:none;} /* visited link */
a.yangshi:hover {color: #F00} /* mouse over link */
a.yangshi:active {color: #00F} /* selected link */