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 trialDave Kellett
7,605 Pointswhat am I doing wrong here, folks?
To the 3rd challenge of 3:
@media screen and (min-width 1000px) {
.wrap {
width: 980px;
}
}
Could I have somehow shortened the CSS somehow or have I perhaps got a blindspot to something?
3 Answers
lasselaube
Courses Plus Student 22,849 PointsHi
add on first line after min-width ":"
Regards -Lasse
Joe Hirst
Courses Plus Student 6,489 Points@media screen and (min-width: 1000px) {
.wrap {
width: 980px;
}
}
Dave Kellett
7,605 Pointsthanks both