-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
Even though not all mail clients support it, it would be great if media queries would remain intact in the email (for emails that scale better to mobile, for instance). At the moment it just takes the styles and applies them to the elements involved.
...
<style>
table .body {
width: 600px;
}
@media only screen and (max-device-width: 480px) {
table.body { width: 300px; }
}
</style>
<body>
<table class="body">should be converted to:
...
<style>
@media only screen and (max-device-width: 480px) {
table.body { width: 300px; }
}
</style>
<body>
<table class="body" style="width: 600px">etc…
Metadata
Metadata
Assignees
Labels
No labels