我正在创建一个通过电子邮件发送的时事通讯,在这个时事通讯中,我尝试使用<fieldset></fieldset>
or<legend></legend>
标签,当我在浏览器上赋予背景颜色时,但是当我在 Outlook 2007 和 2010 上看到它时,它在下面不起作用是我的代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<fieldset style="border-left: 1px solid #99CCFF; border-right: 1px solid #99CCFF;
border-bottom: 1px solid #99CCFF; border-top: 1px solid #99CCFF; padding-left: 10px;
padding-right: 10px; background-color:#CD853F; height:300px; width:300px;">
<legend style="font-weight: bold; text-transform: uppercase;">Warranty Items</legend>
<span style="padding-bottom: 300px;">** Content here ***</span>
</fieldset>
</body>
</html>