首页 > 解决方案 > css线性渐变背景在移动ios safari中显示为空白

问题描述

背景线性渐变是浅蓝色到深蓝色。这在桌面 ios safari 中正确显示,但在移动 ios safari 中,渐变缺少背景白色。

    body {
font-family: source-sans-pro;
background: -webkit-linear-gradient(left top, right top, from(#2ce9fd), to(#5581ec));
background: -webkit-linear-gradient(left, #2ce9fd, #5581ec);
background: -moz-linear-gradient(left, #2ce9fd, #5581ec);
background: -ms-linear-gradient(left, #2ce9fd, #5581ec);
background: -o-linear-gradient(left, #2ce9fd, #5581ec); 
background: linear-gradient(90deg, rgba(44, 233, 253,1) 20.5625%,rgba(44, 232, 252,1) 20.5625%,rgba(85, 129, 236,1) 80.5625%);
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
font-style: normal;
font-weight: 200;}

标签: htmlcss

解决方案


推荐阅读