我在WP8.1上IE中的CSS颜色有问题。我必须使用的设备是Lumia 635。
简而言之,样式表中设置的任何颜色都没有显示(无论是背景颜色、字体颜色、链接颜色等)。但是,它们确实可以在我测试过的所有其他设备以及桌面浏览器(包括IE)上运行。
媒体查询或任何其他 CSS 似乎都没有问题,只是颜色。这是网站,或者如果愿意,我可以发布简化版本的代码:
http://bulgarian-translation-uk.com/
任何可能来自此的帮助或建议将不胜感激。我严重怀疑它是否以任何方式与问题相关,但该站点在 ColdFusion 应用程序服务器上运行。
提前谢谢你!
编辑:这里有一些简单的代码来说明这个问题 - 它甚至不会显示背景颜色等基本信息,但对其他任何东西都没有问题。我也将完全相同的代码上传到以下测试页面:
http://bulgarian-translation-uk.com/bg/test/
body {
background-color:#000000;
}
body, .text {
color:#ffffff;
font-size:25px;
font-family:"Times New Roman", Times, serif;
text-decoration:none;
filter:none !important;
}
a, .text a {
color:#0a591d;
text-decoration:underline;
filter:none !important;
}
.text {
text-align:center;
margin-top:50px;
padding:0;
}
<div class="text">
Test <a href="#">Test</a>
</div>
在head部分添加
<style type="text/css">
html,body{height:100%}
body{color:black;background-color:white}
</style>