我正在尝试在不带名称的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),而不是我想要的跨度内的字符串(汽车类型)。 请帮助。