是否可以将CSS应用于没有名称的span类?

时间:2019-01-14 17:07:09

标签: html css

我正在尝试在不带名称的span类中更改一串文字,该文字的主题是WordPress,我不应该更改任何html / php。

    .text-wrap.car_type span {
      display: none !important;
    }
    .text-wrap.car_type:after {
      content: 'whatever it is you want to add';
    }
    <div class="text-wrap car_type">
        <span class="">Car type</span>Catamaran
    </div>

Css代码只是影响div内的文本(Catamaran),而不是我想要的跨度内的字符串(汽车类型)。 请帮助。

0 个答案:

没有答案