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.
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.
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>