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 trialJason Cockrell
UX Design Techdegree Student 17,006 PointsError on responsive design quiz?
I'm fairly sure, this is my error I am just trying to get some guidance on what I am doing wrong. I am trying to complete the responsive design section where I am asked to create a media query to cause grids 1-6 to break at 705px...this is what I input:
@media screen and (max-width:705px){
.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6 {max-width:100%; margin-right: 1.25%; float: left; display: block; }
I am still receiving a message to set my media query at 705px.
Jason Cockrell
UX Design Techdegree Student 17,006 PointsThanks Nick, I will give this a try.
1 Answer
Kevin Korte
28,149 PointsYou are forgetting a closing " } " if that is your code. You opened two, but only closed one. Might be the issue?
Jason Cockrell
UX Design Techdegree Student 17,006 PointsThanks Kevin. Added closing bracket. Message is still the same. I'm honestly not sure what I am doing wrong.
nik
8,925 Pointsnik
8,925 PointsI redid the challenge and passed it by editing this section of the style.css
added @media screen and (max-width : 705px) { to the top and width: 100%; to the bottom like so
good luck