-3
내 친구 개발자가 html 전자 메일에 문제가 있습니다. 내 메일 응용 프로그램에서 볼 수있는 큰 문제는 CSS와 HTML 여백이있는 두 개의 작은 여백 (0과 0)을 넣지 않은 큰 마진입니다.메일 및 기타 클라이언트의 html 전자 메일에서 큰 차이가 있습니다
제안 할만한 것이 있습니까?
대단히 감사합니다.
<html>
<head>
<style type="text/css">
html,body{margin:0;padding:0; background-color:#f6f6f6}
table { width: 100%; height: 100%; }
span{font-family:Helvetica, Arial, sans-serif; line-height:1.7em;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#f6f6f6">
<tr height="95px" valign="middle" >
<td width="100%" align="left" style="padding:15px"><img src="logo_email.png" width="154" height="46" alt="good" /></td>
</tr>
<tr bgcolor="#eeeeee" height="95px" valign="middle">
<td width="100%" colspan="2" style="padding:15px"><span style="font-size:18px;color:#414042">Thank you for subscribe our newsletter.</span><br /><span style="font-size:13px;color:#414042">The Team</span></td>
</tr>
<tr height="auto" valign="top">
<td width="100%" colspan="2" style="padding:15px"><span style="font-size:10px;color:#6d6e71">You are receiving Activity Notifications emails.</span></td>
</tr>
</table>
</body>
</html>
내 이름은 Nostradamus입니다. 일부 요소에서 여백 또는 패딩을 놓쳤으므로 친구에게이 문제가 있음을 예측할 수 있습니다. 이 요소가 무엇인지 알려 주시면 코드를 제공하지 않으므로 아무런 생각이 없습니다. 내 제안은 검토하시기 바랍니다 : http://stackoverflow.com/questions/how-to-ask 실제로 응답 할 수있는 질문을 제기하는 방법에 대한 자세한 내용. 감사. – Michael
죄송합니다. 코드를 게시하는 것을 잊었습니다! 이제 끝났어 .. – Alessandro