我尝试使用以下代码为我的移动网页中的按钮提供渐变属性(通过 webkit)。Gradient 在 Iphone 和 Android 中运行良好,但在 Blackberry 6.0 本机浏览器中无法运行。
<style>
.btnclass
{
height:70px;
width:300px;
background-image: -webkit-linear-gradient(bottom, #B56D73 20%, #CFDC8E 60%, #F9FFAB 80%);
background-image:linear-gradient(bottom, #B56D73 20%, #CFDC8E 60%, #F9FFAB 80%);
}
</style>
<body>
<form><input type="button" class="btnclass"></form>
</body>