标签: javascript html magento
我正在准备一个Magento Homepage.how来改变特定锚标签的背景颜色。但是我在单个Nav中有5个锚点。我想改变5th Anchor标签的颜色。 抱歉英语不好 提前谢谢
答案 0 :(得分:1)
如果您无法在链接中添加特定的ID或类,则可以使用nth-child:
.containerclass a:nth-child(5) { background-color: green; }