I don’t know if this will help, but when I did my code I used a min-width of 600 and not a max-width. So my code read
@media screen and (min-width: 600 px) {
body {
width: 600px;
}
}
I hope that’s helpful.
Hi Kevin - welcome to the forum!
Paige’s suggestion above is one approach to solve the problem, but there are a few different ways that you could solve the problem.
You can actually control the width without using media screens at all, and just using the width and max-width properties with different values, allowing the width to go up to, but not beyond 600px.
It looks like you’re close - let us know how it goes!
Jesse