我想让我的 div 的高度是
我在子类 UITableViewCell 中有一个 UIWebView。在那个 UIWebView 里面,我有一些带有一个 div 的基本 html。
_editorHTML = [@"<html>"
"<head>"
"<style>"
".contentContainer { font-family:Arial, Helvetica, sans-serif; font-size:1em; }"
"</style>"
"</head>"
"<body>"
"<div id=\"content\" contenteditable=\"true\" style=\"height:100%;\" class=\"contentContainer\">%@</div>"
"</body>"
"</html>" retain];
[_webView loadHTMLString:[NSString stringWithFormat:_editorHTML, @""] baseURL:[NSURL fileURLWithPath:directory]];
有没有办法让 div 的高度成为 UIWebView 的高度?当我设置 height:100% 时,它只会使 div 大约为 UIWebView 高度的四分之一。