My responsive email is aligning to the left in iphone 6. I have align="center"
on the containing tables and TD's. 320px
width is specified in media queries with the main containing table having a width="100%"
.
@media only screen and (max-device-width: 480px)
table[class=threeHundred20], td[class=threeHundred20], tr[class=threeHundred20] {
width: 320px !important;
display: block !important;
}
I know that iphone 6 is higher than my specified 320
width which has created side gutters of space which I don't mind, but I need to center the main content. Is there any way to do this without changing my media queries to target different sizes? I want to avoid going down this route.
due to some past experiences with
I would recommend you use
instead.