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.
我有一个 div 里面有几个链接,我想知道当你将鼠标悬停在 div 上时是否有办法改变链接的全局颜色?不是当您将鼠标悬停在链接上时链接的颜色会发生变化,而是当您将鼠标悬停在 div 上时,所有链接的颜色都会从全局链接颜色发生变化。
任何帮助是极大的赞赏!
谢谢!
正确的 CSS 应该是这样的
#divId:hover a:link, #divId:hover a:visited, #divId:hover a:active{color:#f00}
或者
.divClass:hover a:link, .divClass:hover a:visited, .divClass:hover a:active{color:#f00}
div:hover a { color: green; }
应该做的伎俩。