iPhone:UIWebview渐变背景与CSS可能吗?

时间:2011-09-22 16:22:37

标签: iphone ios

我想为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));'>"]];

1 个答案:

答案 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: