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 trialSardor Latipov
5,609 PointsI am stuck on the last question after this video. is it bug?
I don't know what am I missing. I thing I am doing everything right, but still getting bummer. So the second question after this video is holding me here. Help please! I tried to upload the screenshot, I don't know how to do it here.
Sardor Latipov
5,609 PointsThanx. Here's the code.
/* Complete the challenge by writing CSS below */ @media (max-width: 1020px) { .main-header { background: tomato; color: white; }
}
@media (max-width: 768px;) { .title { font-size: 1.4rem; }
h1 { font-size: 5rem; } }
after submitting this, it says wrong.
2 Answers
Steven Parker
231,236 PointsThanks for the extra info, Sardor, it's all clear now.
You just have one little typo
There's a stray semicolon following the max-width
specification in your second media query.
In future, when posting code, be sure to use the formatting method in the Markdown Cheatsheet pop-up found below the text area.
Daniel Gauthier
15,000 PointsHey Sardor,
Your brackets are a little out of place.
This is the working code:
@media screen and (max-width: 1020px) {
.main-header {
background: tomato;
color: white;
}
}
@media (max-width: 768px) {
.title {
font-size: 1.4rem;
}
h1 {
font-size: 5rem;
}
}
You've got a semicolon in the second media query that is likely causing the issue. (max-width: 768px;)
Good luck!
Sardor Latipov
5,609 PointsThank you for you support Daniel. it helped.
Steven Parker
231,236 PointsSteven Parker
231,236 PointsYou linked to a video, but it sounds like you may be talking about a quiz or challenge, is it one of those?
Don't worry about a screenshot, but if it's a challenge, do show the code you were trying and link to the challenge. If it's a quiz, copy the quiz question.