2013-08-02 2 views
0

전자 메일 용으로 문제를 해결하려고합니다. 여기에서 문제의 스크린 샷 : http://imgur.com/pEQvVqf가운데 테이블 - 양쪽 색상

기본적으로 600width 테이블이 있는데 나머지 이메일과 동일한 배경색과 텍스트 색상이 필요합니다.

아직 보셨 듯이 양쪽면 모두 흰색입니까 - 여기서 어떻게해야합니까? 왼쪽과 오른쪽에 두 개의 테이블을 만드시겠습니까? 회색으로 만들거나 텍스트를 그대로두고 테이블 너비를 100 %로 만들 수 있습니까? 그 때문에 내 텍스트 서식이 왜곡됩니다.

어떤 도움이 크게 감사합니다 - 여기 내 코드 (couldnt는 형식이 4 간격 때문에 사용 역 인용 부호 제대로입니다 :

<table width="600" height="21" border="0" cellspacing="0" cellpadding="0" align="center" style="background-color:#ccc;font-family:verdana; font-size:10px; color:FFFFFF"> 
    <tr> 
     <td colspan="2" align="center" style="font-family:Arial, Helvetica, sans-serif; font-size:11px; color:#000000; padding:10px 10px 0px 10px;"> 
      <font style="font-family:arial;font-size:10px;"> 
       You have received this email from an independent marketing company x x x x x x x .Company Reg. No.03976500 You have registered to receive our email advertising from one of our sites, and may unsubscribe from this newsletter by clicking <a href="">here</a><br> For more information on how we use your data, please read our <a href="http:/www.yoy.co.uk/privacy-legal" style="color: #5B5B5B;" target="_blank">privacy policy</a>. 
      </font> 
     </td> 
    </tr> 
</table> 

건배

+0

그냥이 CSS를 추가 - '몸 : 배경 색상 : # 123456;' – Jacques

+0

는 youuu 감사 - 나는 당신에게 포인트를 줄 수 있도록 당신이 대답에 있음을 넣을 수 있습니다? –

+0

네, 방금 게시했습니다. – Jacques

답변

0

이 CSS를 추가하십시오 - 본문 : 배경색 : # 123456;

0

그냥 div 태그 및 일부 특수 CSS 클래스를 사용

.
<div style="background-color:#ccc;font-family:arial;font-size:10px;"> 
    <table style="width: 600px;margin:0 auto;font-family:verdana;color:FFFFFF;">...</table> 
</div> 
+0

이메일에서이 방법이 작동하지 않는 경우가 있습니다. 인라인 스타일을 추가하는 것이 더 안전합니다. – camainc

+0

이메일의 CSS 클래스는 좋지 않은 생각입니다. 완전한 크로스 클라이언트 지원을 위해서만 스타일 속성을 사용해야합니다! – Pevara

+0

업데이트 됨 ......... – matsko

0

T 이 같은 스피 뭔가 :

<div style="background-color:#ccc; font-family:Arial, Helvetica, sans-serif; font-size:11px; color:#000000; color:#fff; width:100%"> 
    <div style="width:600px; margin: 0 auto; padding: 10px 10px 0 10px;"> 
       You have received this email from an independent marketing company x x x x x x x .Company Reg. No.03976500 You have registered to receive our email advertising from one of our sites, and may unsubscribe from this newsletter by clicking <a href="">here</a><br> For more information on how we use your data, please read our <a href="http:/www.yoy.co.uk/privacy-legal" style="color: #5B5B5B;" target="_blank">privacy policy</a>. 
    </div> 
</div>