html – 使用style =“color:#fff”为表格颜色显示电子邮件

前端之家收集整理的这篇文章主要介绍了html – 使用style =“color:#fff”为表格颜色显示电子邮件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们希望在电子邮件显示订单详细信息作为表格
​<table>
    <thead>
        <tr>
            <th>Header 1</th>
            <th>Header 2</th>
            <th>Header 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>blah blah</td>
            <td>blah blah</td>
            <td>blah blah</td>
        </tr>
    </tbody>
</table>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

我们理想地想要标题具有背景颜色为’#5D7B9D’,文本颜色为’#fff’。
我们正在使用bgcolor =’#5D7B9D’来更改背景颜色,并且无法找到替换文本颜色的替代方法
由于大多数电子邮件提供商剥离了CSS,所以我们根本不能使用style属性

问题是

>如何使标题文本显示为白色?
有没有任何替代方法

解决方法

你可以轻松地这样做:
<table>
    <thead>
        <tr>
          <th bgcolor="#5D7B9D"><font color="#fff">Header 1</font></th>
          <th bgcolor="#5D7B9D"><font color="#fff">Header 2</font></th>
           <th bgcolor="#5D7B9D"><font color="#fff">Header 3</font></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>blah blah</td>
            <td>blah blah</td>
            <td>blah blah</td>
        </tr>
    </tbody>
</table>

演示: – http://jsfiddle.net/VWdxj/7/

原文链接:https://www.f2er.com/html/232692.html

猜你在找的HTML相关文章