FCC documentation page

my css media media querys are working but the FCC test suite can’t seem to detect it nay help will be appreciated.

here is my code
/* CSS Document */

@media screen and (max-width: 760px){
	body{
		background-color: aquamarine;
	}
	#wrappers{
	display: flex;
	flex-direction: column;
}
#navbar{
	position:relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 530px;
}
	#main-doc{
	width: 100%;
	position: relative;;
}


}
@media screen and (max-width: 600px){
	.main-section{
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

}



Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0

Challenge: Build a Technical Documentation Page

Link to the challenge:

Hi @Code-reydo !

Welcome to the forum!

For projects, it is always better to share your codepen link so we can test it out and see the issue better.


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Thank you! turns i just needed to use codepen for it to work, i was using notepad++ at first
will make sure to do that

here is the link to my project just for feedback

Ok cool.

If you want feedback, then you can make a new post in the #project-feedback section.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.