在 Chrome 中使用 notepad++ 运行 html 代码和通过 outlook 选项发送时输出结果有差异

在 Chrome 中使用 notepad++ 运行 html 代码和通过 outlook 选项发送时输出结果有差异
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>stars.css Demos</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<style>
@import url(http://fonts.googleapis.com/css?family=Roboto:500,100,300,700,400);

* {
  margin: 0;
  padding: 0;
  font-family: roboto;
}

body { background: #000; }

.cont {
  width: 93%;
  max-width: 350px;
  text-align: center;
  margin: 4% auto;
  padding: 30px 0;
  background: #111;
  color: #EEE;
  border-radius: 5px;
  border: thin solid #444;
  overflow: hidden;
}

hr {
  margin: 20px;
  border: none;
  border-bottom: thin solid rgba(255,255,255,.1);
}

div.title { font-size: 2em; }

h1 span {
  font-weight: 300;
  color: #Fd4;
}

div.stars {
  width: 270px;
  display: inline-block;
}

input.star { display: none; }

label.star {
  float: right;
  padding: 10px;
  font-size: 36px;
  color: #444;
  transition: all .2s;
}

input.star:checked ~ label.star:before {
  content: '\f005';
  color: #FD4;
  transition: all .25s;
}

input.star-5:checked ~ label.star:before {
  color: #FE7;
  text-shadow: 0 0 20px #952;
}

input.star-1:checked ~ label.star:before { color: #F62; }

label.star:hover { transform: rotate(-15deg) scale(1.3); }

label.star:before {
  content: '\f006';
  font-family: FontAwesome;
}
</style>
<link href="http://www.cssscript.com/wp-includes/css/sticky.css" rel="stylesheet" type="text/css">
</head>

<body>


<div class="cont">
<p><i>Rate Us</i></p>
  <div class="stars">
    <form action="">
      <input class="star star-5" id="star-5-2" type="radio" name="star"/>
      <label class="star star-5" for="star-5-2"></label>
      <input class="star star-4" id="star-4-2" type="radio" name="star"/>
      <label class="star star-4" for="star-4-2"></label>
      <input class="star star-3" id="star-3-2" type="radio" name="star"/>
      <label class="star star-3" for="star-3-2"></label>
      <input class="star star-2" id="star-2-2" type="radio" name="star"/>
      <label class="star star-2" for="star-2-2"></label>
      <input class="star star-1" id="star-1-2" type="radio" name="star"/>
      <label class="star star-1" for="star-1-2"></label>
    </form>
  </div>
</div>

</body>
</html>

当我运行它时,就会出现镀铬星星。

当我使用选项通过 Outlook 发送时,它显示为

()()()()()

答案1

当我使用选项通过 Outlook 发送时,它显示为

()()()()()

这是因为 Outlook 不是 Web 浏览器。

Outlook 仅支持 HTML 和 CSS 的子集。


如果您已经从事电子邮件设计和编码工作几年了,那么您可能已经意识到 Outlook 对电子邮件标准的支持非常糟糕。自 Outlook 2007 推出以来,微软就将 Word(从 Internet Explorer)作为其渲染引擎,并且从此再也没有回头(呃,向前?)。尽管电子邮件社区做出了努力,微软也做出了善意的回应,但这意味着 Outlook 中的 HTML 和 CSS 支持在 2007、2010 和现在的 2013 版本之间几乎没有变化。

来源Outlook 2013 仍由 Word 提供支持;现在可用于电子邮件测试

相关内容