Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

What is the correct answer for CSS Level 11 lesson 4. I have tried everything I cant progress

@media (min-width: 550px) {
body {
background-color: pink;
font-size: 25px;
}
}
by

1 Answer

iamabhishek
Try this:

<!DOCTYPE html>
<html>
<head>
<title>Changing font-size using Media query</title>
<style>
@media (min-width: 550px) {
body {
font-size:25px;
}
}

</style>
</head>
<body>
<h1>Studytonight</h1>
</body>
</html>


You were adding the background color extra. Please don't add any additional property

Login / Signup to Answer the Question.