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 trial

CSS CSS Layout Basics CSS Layout Project Adding Media Queries for Large Screens

Adam Maley
Adam Maley
5,946 Points

@media (min-width: 769px) {

Why is min-width and { , marked RED? As if it's unclosed or an error?

@media (min-width: 769px) {

victor cooper
victor cooper
6,436 Points

did you close the curly brackets?

@media (min-width: 769px) {

}

like this?

1 Answer

David Cirlanaru
David Cirlanaru
6,869 Points

Hi Adam. Your code is missing a closing curly bracket. If it's still red don't worry, it was the same for me even though there were no errors. So as long as your code is working there is nothing to worry about. Happy coding.