-
-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Description
For example:
<style>
h1 {
font-size: 14px;
}
@media only screen and (max-width: 620px) {
h1 {
font-size: 16px;
}
}
</style>
<h1>Hello</h1>
Should be converted to:
<style>
@media only screen and (max-width: 620px) {
h1 {
font-size: 16px;
}
}
</style>
<h1 style="font-size:14px">Hello</h1>
The media query is used for responsive emails.
yasoob, yisibl, malectro, jaredellison-nyt, arciisine and 2 more
Metadata
Metadata
Assignees
Labels
No labels