audiotec
audiotec

Reputation: 121

CSS selector equivalent of this one

I don't know how to put this class name in css selector because of the space. Could you help me please. Thank you!

'//div[@class="posting-card super-highlighted "]' <===

'div.posting-card super-highlighted' - doesn't work 'div."posting-card super-highlighted"' - neither

Upvotes: 0

Views: 41

Answers (1)

supputuri
supputuri

Reputation: 14135

Always remember to replace space with . between the classes in css.

div.posting-card.super-highlighted

Upvotes: 2

Related Questions