我尝试了您的示例,它在 UIWebView 中运行良好。我不知道您如何加载 HTML / CSS。您确定 CSS 已正确加载吗?您是否设置了 UIWebView 的框架?
这是对我有用的代码。我将 UIWeb 的框架设置为小于屏幕大小,因为您提到了以模态方式呈现它。
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *htmlString = @"<html><head><style type='text/css'>html,body {margin: 0;padding: 0;width: 100%;height: 100%;}html {display: table;}body {display: table-cell;vertical-align: middle;padding: 20px;text-align: center;-webkit-text-size-adjust: none;}</style></head><body><p><strong>Title</strong></p><p>A long explanation about what's going on and all that.</p><p><a href='#'>A link</a></p></body></html>";
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(10.0, 10.0, 300.0, 400.0)];
[self.view addSubview:webView];
[webView loadHTMLString:htmlString baseURL:nil];
[webView release];
}