Is it true that media queries do not work in email templates? I have a simple test template and a query BUT can't seem to get it to function properly.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Report</title>
<style media="screen">
@media only screen and (max-width: 768px) {
h1.temp{display: block !important} //testing & not working....
}
</style>
</head>
<body bgcolor="#f6f6f6">
<h1 class="temp" style="display: none">Show Me in Mobile Device</h1>
<%= yield %>
</body>
</html>