我想为UIwebview的背景添加渐变,我将其加载为:
[self.webView loadHTMLString:customHtml baseURL:nil];
但是这个html行没有给出效果,有谁知道如何做得更好或者可以修复这个css?
[customHtml appendString:[NSString stringWithFormat:@"%@ ", @" <body style='background-color:#4b95bf; webkit-gradient(linear, left top, left bottom, from(#55aaee), to(#003366));'>"]];
答案 0 :(得分:1)
CSS不正确webkit-gradient()
不是属性,而是-webkit-gradient()
是值。
而HTML应该包含:
[customHtml appendString:[NSString stringWithFormat:@"%@ ", @" <body style='background-color:#4b95bf; background-image:-webkit-gradient(linear, left top, left bottom, from(#55aaee), to(#003366));'>"]];
请注意-
和webkit-gradient
background-image: