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

Level11 /lesson4

i'm unable to solve this code..the problem is
"Add the CSS style for class body tag inside the media query, with font-size property." and the code is
<!DOCTYPE html>
<html>
<head>
<title>Changing font-size using Media query</title>
<style>
@media (min-width: 550px){
body{
background-color: pink;
font-size: 25px;
}
}
</style>
</head>
<body>
<h1>Studytonight</h1>
</body>
</html>
by

1 Answer

sam5epi0l
You don't have to use background-color property.

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

Login / Signup to Answer the Question.