您的样式表包含以下 CSS:
.post .content button{background:linear-gradient(top,#ffffff 0%,#e9e9e9 100%);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#e9e9e9')";
美化:
.post .content button {
background: linear-gradient(top,#ffffff 0%,#e9e9e9 100%);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#e9e9e9')";
}
最后一个属性 ,-ms-filter
是 Microsoft 的专有 CSS 扩展,仅由 Internet Explorer 解析。
颜色#ffffff
为白色,颜色#e9e9e9
为浅灰色。
因为该效果只在 Internet Explorer 中有效,所以只有 IE 用户会看到一个浅色矩形而不是播放按钮。
将filter
to设置none
为返回按钮:
此标记可能会影响您的 Wordpress 博客中的其他按钮,因此删除它可能不是一种选择。相反,您可以将 ; 添加filter:none
到 CSS 中.mejs-button
。例如:
.mejs-button{
filter: none;
}