如何使用 CSS 更改某个面包屑元素的颜色?
How to change the color of the certain breadcrumb element using CSS?
我想更改面包屑元素的颜色。
示例一:https://www.travellaggio.com/product-category/italy/mantova/
例子二:https://www.travellaggio.com/mantova/10674
除最后一个箭头外,所有箭头(我为它们使用 Font Awesome 图标)应为灰色。但是现在所有的箭头都是白色的,我不能用颜色来区分它们。
应该这样做:
/* target chevron inside the header that are not the last one */
.entry-title .fa-chevron-right:not(:last-of-type) {
color: #777777;
}
在 chrome 开发工具中测试:
我想更改面包屑元素的颜色。
示例一:https://www.travellaggio.com/product-category/italy/mantova/ 例子二:https://www.travellaggio.com/mantova/10674
除最后一个箭头外,所有箭头(我为它们使用 Font Awesome 图标)应为灰色。但是现在所有的箭头都是白色的,我不能用颜色来区分它们。
应该这样做:
/* target chevron inside the header that are not the last one */
.entry-title .fa-chevron-right:not(:last-of-type) {
color: #777777;
}
在 chrome 开发工具中测试: