46. You should have an attribute selector to target the first descendant of span elements that have the word one as a part of their class value.
47. You should use an attribute selector to target the first descendant of span elements that have the word one as a part of their class value and set its background-image property to use a linear-gradient.
My Code ![]()
span[class*=“one”]:first-child {
background-image: linear-gradient(to right skyblue, pink);
}
span[class*=“two”] :nth-child(2) {
background-image: linear-gradient(to right white, red);
}
span[class*=“three”] :last-child {
background-image: linear-gradient(to right blue, red);
}
Can you please help me with this am stuck here!!!
