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

HTML Build a Responsive Website Adaptive Design Implementing Media Queries

HELP!

sorry guys, I'm not sure if i missed this part on one of the videos but can't really find the appropriate coding if you can help me with this one, thank you!

"Challenge task 2 of 3 Add the appropriate CSS code to the media query so that ".contact" and ".menu" fill the entire container width when the device or browser width is at most 480px wide."

2 Answers

Matt Campbell
Matt Campbell
9,767 Points

Go back over the video, have the video in one window and the code challenge in another. Take your time and watch the video very very carefully. Then Google media queries. The answer is there, just go back over what you've watched.

The forum is designed to guide and advise on problems so we don't just give out the answers. It defeats the point of learning if you are given the answer to complete a challenge. You won't have actually learnt anything.

One thing that helps me learn is to see the code.

@media screen and (max-width: 480px)
{
    .contact, .menu
    {
        width: 100%;
    }
}

Thats what i did first, then realized i was missing the #container. too easy right?