2017-12-05 3 views
0

안드로이드 Gmail은 제대로

<html> 
 
    <head> 
 
    </head> 
 
    <body> 
 
    <td> 
 
    <table align="center" background="{{imgUrl}}" height="461" width="597"> 
 
     <tr> 
 
     <td width="597" height="461">&nbsp;</td> 
 
     </tr> 
 
    </table> 
 
    </body> 
 
</html>

참조 코드 위에 배경 이미지를 확장 할 수 없습니다. 안드로이드에서 이미지의 크기가 올바르게 조정되지 않았습니다. 첨부 된 이미지를 참조하십시오. enter image description here 해결 방법을 아는 사람이 있습니까? 감사!

답변

1

그것은 Gmail의 자동 크기 조정으로 인해 발생하고 최소 폭 적용하여 고정 할 수 - 당신은 테이블을 내부의 TD와 같은 폭 & 높이를주고있다 https://www.campaignmonitor.com/forums/topic/7733/android-gmail-image-resizing-issues/

+1

https://www.campaignmonitor.com/css/color-background/background-image/ - 참고 - 배경 이미지는하지 않습니다 Outlook 또는 일부 Android 버전에서 전혀 작동하지 않습니다. – gwally

+0

@ gwally 헤드 업에 감사드립니다. 지금 우리는 Outlook 지원을 처리 할 계획이 없습니다 ~ –

+0

@gwally Gmail에서 andorid 7도 배경 이미지를 지원하지 않습니다 ... –

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> 

희망을 당신