Here's a UILabel which says "About". Set at exactly 17.7 in iOS.
Below it a UIWebView which also says "About". Also set at exactly 17.7 using css.
They don't match.
How to fix this correctly?
It is bizarre that in Apple's own UIWebView, the size basis is different?
Html to test...
<html><head>
<style type='text/css'>
body {
margin: 0px;
font-family: 'SourceSansPro-Light';
font-size: FONTPOINTSpt;
}
html { -webkit-text-size-adjust:none; }
</style></head>
<body leftmargin=0 topmargin=0>
About
</body></html>
Behavior is identical on device or simulator.
(Note, from here I learned the ratio is, perhaps 72.0/96.0.)