Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下代码应展示预期的功能:
<head> <style> a:active { color:teal; } a:hover { color:green; ... ... ... <body> <a href="http://www.google.co.uk">Googs!</a> ...
在此处查看完整代码
切换你的 CSS 规则。
... a:hover{color: #000;} a:active{color: #c0c0c0;} ...
它看起来不错,我假设省略号代表右括号。您是否以另一种样式覆盖页面更深处的级联?另外,我更喜欢确保详细说明样式标签:
<style type="text/css">