进度条(电子邮件)

C_I*_*smE 5 html css email outlook progress-bar

我目前正在开发模板电子邮件.我需要显示此样式的进度条:

.progress {
    width:100px;
}
.progressleft {
    float: left;
    height: 15px;
}
.progressright {
   overflow: hidden;
   height: 15px;
}
Run Code Online (Sandbox Code Playgroud)
<div style="position:relative;top: 20px; text-align:center; color:#ffffff;">50%</div>
<div style="width:250px">
<div id="prog4" class="progressleft" style="width:50%;text-align:center;background-color: #f83;"></div>
<div class="progressright" style="background-color: #ccc;"bgcolor="#ccc"></div>
Run Code Online (Sandbox Code Playgroud)

然而,在收到带有Outlook的电子邮件时没有出现任何内容......但是当我在浏览器中打开电子邮件时,显示所有内容完美...

预先感谢您的帮助 ...

Roh*_*zad 7

现在尝试像这样的表格格式.

<table style="border:0;" cellpadding="0" cellspacing="0" width="250">
<tr>
  <td bgcolor="#f83f83" style="width:50%; background-color:#f83f83; float:left; height:15px;"></td>
  <td bgcolor="#cccccc" style="width:50%; background-color:#cccccc; float:left; height:15px;"></td>
  </tr>
</table>
Run Code Online (Sandbox Code Playgroud)