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

Which type error coming doing CSS?

<!DOCTYPE html>
<html>
<head>
<title>Changing font-size using Media query</title>
<style>
body{
@media screen and (min-width:600px)
background-color:pink;
}
font-size: 25px;
}
}
</style>
</head>
<body>
<h1>Studytonight</h1>
</body>
</html>
by

2 Answers

iamabhishek
Please share the level number and lesson number
Abhishekigx7y
<!DOCTYPE html>
<html>
<head>
<title>Changing font-size using Media query</title>
<style>
body{
@media (min-width : 550px) and (min-width : 550px) {
background-color: pink;
font-size: 20px;
}
}
</style>
</head>
<body>
<h1>Studytonight</h1>
</body>
</html>
Level 11>lesson4

Login / Signup to Answer the Question.