I completed all the given tasks and finally it asked to make a media query I wrote this piece of code
@media (min-width:600px){
body{
width:390px;
}
}
Is this wrong? Thanks in advance for any help
Are you saying it isn’t working with the tests? Can we see all of your code, please?
But I’m not sure that media query really makes much sense, try it with a color change so it is easier to see what it is doing.
body {
background-color: red;
}
@media (min-width: 600px) {
body {
background-color: blue;
}
}
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.