Book Inventory App Project

Thank you, I appreciate it.

Would this be the more common way of selecting these attributes? Should I practice more to understand it this way vs others?

I appreciate your help and insight, thank you.

no, you used a perfectly acceptable way. It just wasn’t considered when writing the tests (it happens, things can be accomplished in many different ways). User feedback is extremely important to catch these situations and fix them!

Thank you, I appreciate it. Looking forward to continue through the Full Stack Cert. So far its great!

I had this problem as well.

span[class~=“one”] :nth-child(1) {
background-image: linear-gradient(white, black);
}

// separating the first and second child into 2 different selectors was the only way it accepted my answer. I actually went into the console and looked at the css they used to style.

span[class~=“two”] :nth-child(1), span[class~=“two”] :nth-child(2) {
background-image: linear-gradient(white, black);
}

span[class~=“three”] span {
background-image: linear-gradient(white, black);
}

Hi there! Create your own topic to the challenge step using Help button. That’s appear below the challenge editor, when you try to submit wrong code more than three times.

hi @cmdoumn, please create your own topic when you need help

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.