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.
我想为菜单和子菜单中的项目设置不同的文本颜色。我可以通过向子菜单中的项目添加不同的类来仅使用 css 来执行此操作,而无需修改 html 吗?
只需使用以下 CSS 定义:
.sf-menu a, .sf-menu a:visited{ color: #ffffff; } .sf-menu li li a, .sf-menu li li a:visited{ color: #ff0000; }
所以菜单有一个白色的字体颜色和红色的子菜单。