Tell us what’s happening:
I just can’t make the media query to work. Can anyone help?
Your code so far
<!-- file: index.html -->
<main id="main-doc">
<nav id="navbar">
<header>Tech Details</header>
<a href="#Section_the_First" class="nav-link">Section the First</a>
<a href="#Section_the_Second" class="nav-link">Section the Second</a>
<a href="#Section_the_Third" class="nav-link">Section the Third</a>
<a href="#Section_the_Fourth" class="nav-link">Section the Fourth</a>
<a href="#Section_the_Fifth" class="nav-link">Section the Fifth</a>
</nav>
<section id="Section_the_First" class="main-section">
<header>Section the First</header>
<p></p>
<p></p>
<code></code>
<li></li>
</section>
<section id="Section_the_Second" class="main-section">
<header>Section the Second</header>
<p></p>
<p></p>
<code></code>
<li></li>
</section>
<section id="Section_the_Third" class="main-section">
<header>Section the Third</header>
<p></p>
<p></p>
<code></code>
<li></li>
</section>
<section id="Section_the_Fourth" class="main-section">
<header>Section the Fourth</header>
<p></p>
<p></p>
<code></code>
<li></li>
</section>
<section id="Section_the_Fifth" class="main-section">
<header>Section the Fifth</header>
<p></p>
<p></p>
<code></code>
<li></li>
</section>
</main>
/* file: styles.css */
#navbar {
text-aling: left;
}
@media (max-width: 600px) {
section {
background-color: gray;
}
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Challenge Information:
Technical Documentation Page - Build a Technical Documentation Page