대량 이메일을 보내면 모든 것이 테이블 안에 있습니다. 테이블에 영향을 미치는캠페인 모니터를 사용하여 이메일을 보내려면 세로 정렬 표의 텍스트 위 5px 공백을 제거 할 수있는 방법이 있습니까?
CSS :
.title {
vertical-align: top;
}
HTML :
<table width="580" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="title" align="left" width="440" valign="top">
<h2><singleline label="Title">Enter your title</singleline></h2>
<p><multiline label="Description">Description</multiline></p>
</td>
<td align="left" valign="top" width="20"><img src="/images/00.gif" height="1" width="20" border="0"></td>
<td align="left" valign="top" width="120"><img src="/images/001.jpg" editable="true" label="Image" width="120" border="0"></td>
</tr>
<tr>
<td colspan="3" align="left" valign="top" width="580"><img src="/images/00.gif" height="20" width="1" border="0"></td>
</tr>
</table>
나는 테이블의 상단과 같은 높이로 태그 안의 텍스트가 필요합니다. 현재/images/001/jpg는 동일하지만 텍스트는 표의 가장자리에서 5 픽셀 아래에 있습니다.
CSS에서 vertical-align : top을 사용했으며 border-spacing : none, border-collapse : collapse 및 border : none을 시도했습니다. 그들 중 누구도 문제를 해결하지 못했습니다.
여백 위쪽 사용 : -5px; 이 태그는 표준 브라우저 테스트에서 문제를 해결했지만 일부 이메일 클라이언트에서는 지원되지 않았습니다.
어떤 브라우저 나 이메일 리더 : 여기
는 구조 예이다? – AmyIE 7,8,9 Firefox, Safari, Chrome gmail, outlook 07/10 – MWhitmore