0

I'm in an editor, which formats the:

<style></style>

Is it possible to make the format below @media?

style="@media only screen and (max-width: 600px) {
   .thanks {
     color: green;
   }
}"

Thanks in advance.

1 Answers1

-1

Unfortunately, you cannot do it inline. Instead, you would need to format it as such:

<!DOCTYPE html>
<html lang="en">
<head>
<style>
@media only screen and (max-width: 600px) {
   .thanks {
     color: green;
   }
}
</style>
</head>
<body class="thanks">

</body>
</html>
NinjaCoder
  • 58
  • 4