0

メールの何かを修正しようとしています。問題のスクリーンショット: http://imgur.com/pEQvVqf

基本的に、メールの残りの部分と同じ背景色とテキスト色が必要な 600 幅のテーブルがあります。

ご覧のとおり、どちらの面も白です。ここで何をすればよいでしょうか。左右に2つのテーブルを作る?グレーにするか、テキストをそのままにしてテーブル幅を 100% にすることはできますか? それは私のテキストの書式設定をゆがめるからです。

どんな助けでも大歓迎です-これが私のコードです(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>

乾杯

4

3 に答える 3

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>
于 2013-08-02T15:06:49.493 に答える
0

この CSS を追加するだけです - body:background-color:#123456;

于 2013-08-02T15:10:04.750 に答える
0

次のようなことを試してください:

<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>
于 2013-08-02T15:10:04.873 に答える