2014-04-04 3 views
0

HTML 전자 메일 서식 파일에서 작업하고 있습니다. 아래의 html 코드의 줄 높이가 Gmail 및 Outlook에서 정상적으로 작동하는 것으로 보입니다. 그러나 Outlook Web App에서는 줄 크기가 증가합니다. 인터넷에서 발견 된 몇 가지 수정 사항을 시도했습니다/stackoverflow : 헤더의 CSS 코드와 인라인 CSS 코드. 그러나 이것은 트릭을하지 않습니다. Outlook Web App에서 줄 높이를 수정하는 방법을 아는 사람이 있습니까?Outlook Web App 용 HTML 전자 메일 줄 크기

감사합니다. 표시

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Untitled Document</title> 

<style> 
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100% !important;} 
</style> 

</head> 
<body> 

<table cellpadding="0" cellspacing="0" width="400"> 
<tr> 
<td width="400" style="display:block;padding:0px;margin:0px;font-size:12px;font-family:Arial, Helvetica, sans-serif;color:#000000;mso-line-height-rule:exactly;line-height:12px;"> 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
Test copy Test copy Test copy Test copy Test copy 
</td> 
</tr> 
</table> 

</body> 
</html> 

답변

0

이것은 사용하고 있지만 이미 비슷한 것으로 보입니다.

<tr> 
<td width="100%" height="15" 
style="font-size:15px; line-height:15px; mso-line-height-rule: exactly;" 
class="hide">&nbsp;</td> 
</tr> 
관련 문제