0
A
답변
1
그것은 Gmail의 자동 크기 조정으로 인해 발생하고 최소 폭 적용하여 고정 할 수 - 당신은 테이블을 내부의 TD와 같은 폭 & 높이를주고있다 https://www.campaignmonitor.com/forums/topic/7733/android-gmail-image-resizing-issues/
0
-에서 style="min-width:597px;"
아이디어 그것. 미디어 쿼리를 사용하여 테이블 높이를 제어 할 수 있어야합니다.
이 코드를보십시오 :이 작동
<html>
<head>
<style type="text/css">
@media only screen and (max-width:480px) {
.bannerTable{width:100% !important;height:auto !important;}
}
</style>
</head>
<body>
<td>
<table align="center" background="{{imgUrl}}" width="597" style="width:100%; max-width:597px; height:461px;display:block;" class="bannerTable">
<tr>
<td>Content goes here</td>
</tr>
</table>
</body>
</html>
희망을 당신
https://www.campaignmonitor.com/css/color-background/background-image/ - 참고 - 배경 이미지는하지 않습니다 Outlook 또는 일부 Android 버전에서 전혀 작동하지 않습니다. – gwally
@ gwally 헤드 업에 감사드립니다. 지금 우리는 Outlook 지원을 처리 할 계획이 없습니다 ~ –
@gwally Gmail에서 andorid 7도 배경 이미지를 지원하지 않습니다 ... –