我想更改一些链接的链接样式,如下所示:
a:hover { /* These links will be blue when hovered-over */ background-color: #3366FF; }
但是,我只想让它在我的导航栏中生效,而不是常规链接.
我试过这个变种:
#navbar a:hover { /* These links will be blue when hovered-over */ background-color: #3366FF; }
具有预期含义“这仅适用于带有< div id =”navbar“>”的链接
但它没有用.
如何仅为某些链接设置样式,由其容器的类或ID定义?