我正在使用此代码-它在任何地方都可以正常使用-除了在移动了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;
}
知道我在做什么错吗?