xdxdxd
xdxdxd

Reputation: 116

CSS parsing error and not understanding the components

I am reading a codebase and trying to replicate it part by part. However I am getting a css parsing error for the following css line:

#pp:not([class*="pelwqu"]) #s199 {
  background-image: url("https://bgnmypdu.helldomain.oy.ne.ro");
}

Additionally, I did not get the components of this line. Can you explain which part is needed for what and why? Thank you.

Upvotes: 0

Views: 65

Answers (1)

Tanel Eero
Tanel Eero

Reputation: 652

This bit is basically correct although using something like this complex is a hackish solution at best and should not be encouraged.

It's applying a background image to an element with id="s199" that is inside of an element that has id="pp" but doesn't have a class that contains the string "pelwqu".

Upvotes: 1

Related Questions