如何从CSS中排除类?

时间:2018-05-18 20:44:49

标签: css wordpress frontend styling

我有代码:

.et_pb_text_inner a {
color: #fff;
}

如果我想排除确保这不包括“.et_pb_image_wrap”,我该怎么做?

2 个答案:

答案 0 :(得分:1)

所以如果它也没有那个类,你只想要应用它吗?

.et_pb_text_inner:not(.et_pb_image_wrap) a {
color: #fff;
}

答案 1 :(得分:0)

如果.et_pb_text_inner a正在影响.et_pb_image_wrap,那么这可能是继承问题。可以在here中找到关于CSS中的继承的详细说明。

我的猜测是设置

.et_pb_image_wrap{
  color:revert;

}

或者

.et_pb_image_wrap{
  color:initial;

}