我想在UIWebview
中垂直对齐我的文字:
NSString *htmlString = [NSString stringWithFormat:@"<html><head></head><body> <div style=\"margin: 0 auto; text-align: center; height: 7em; line-height: 7em;background-color: %@; font-size: 25px; color:white\">%@</div></body></html>", myColor, string];
[self.webView loadHTMLString:htmlString baseURL:nil];
它垂直对齐,但它有一个白色边框。我不知道它是什么。
答案 0 :(得分:1)
试试这个......
NSString *htmlString = [NSString stringWithFormat:@"<html><head></head><body style=\"width:100%%; margin:0px\"> <div style=\"margin:0 auto; width:100%%; text-align: center; height: 7em; line-height: 7em;background-color: %@; font-size: 25px; color:white\">%@</div></body></html>", @"#111111", @"Hello World...!!!"];
[webView loadHTMLString:htmlString baseURL:nil];