Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBala Selvam
Python Development Techdegree Student 30,590 PointsCan anyone explain why my last img selector is not working 100% everything is correct, but it keeps saying it is wrong
Can understand why the last img selector is not working. I was pretty sure you used the asterisk for this one.
/* Complete the challenge by writing CSS below */
img[title^="product-"] {
border-color: lightblue;
}
a[href$=".html"] {
text-decoration: none;
}
img[src*= "preview"]{
width: 100%;
}
2 Answers
Jennifer Nordell
Treehouse TeacherHi there! You're super close. In some cases, CSS is not picky about whitespace but this is one of those "make or break" cases and a single space is breaking your code. To be clear, this is not something specific to Treehouse, but to CSS in general.
You wrote:
img[src*= "preview"]
But that should be:
img[src*="preview"]
Note the removal of the extraneous space between the equals sign and the beginning quotation mark. Hope this helps!
Unsubscribed User
Front End Web Development Techdegree Student 33,900 PointsDid you try without the space between = and "preview"?
You have a space in your code. Other than than it should be correct.
Bala Selvam
Python Development Techdegree Student 30,590 PointsI did not. Thanks.
Bala Selvam
Python Development Techdegree Student 30,590 PointsBala Selvam
Python Development Techdegree Student 30,590 PointsOkay sweet. Thank you. That worked.