【发布时间】:2013-11-18 16:54:53
【问题描述】:
我在 CSS 中使用了以下渐变背景:
body {
margin:0px;
padding:0px;
border:0px;
font-family: Helvetica, Arial, Helvetica, sans-serif;
font-size: 12px;
color: white;
height:100%;
width:100%;
background: #f89623; /* for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#150d03, endColorstr=#f89623); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#150d03), to(#f89623)); /* for webkit browsers */
background: -moz-linear-gradient(top, #150d03, #f89623); /* for firefox 3.6+ */
}
它在桌面计算机上的 IE、FF Chrome 等中运行良好,但在移动设备上查看时渐变停止。
任何建议将不胜感激。谢谢。
【问题讨论】:
-
您在移动设备上使用什么浏览器?
标签: background linear-gradients css