Я использую этот код - он отлично работает где угодно - кроме как в Gmail на мобильном телефоне, где текст обрезается (и вы не можете прокрутить):
@media only screen and (min-width:768px){
.templateContainer{
width:600px !important;
}
}
@media only screen and (min-width:600px) and (max-width:767px) {
.templateContainer{
width:600px !important;
}
body{
width:100% !important;
min-width:100% !important;
}
}
@media only screen and (max-width:599px){
body,table,td,p,a,li,blockquote{
-webkit-text-size-adjust:none !important;
}
body{
width:100% !important;
min-width:100% !important;
}
Есть идеи, что я делаю не так?