Using CSS in a UIWebView, how can I make left-to right text flow in a justified manner? What CSS am I looking for?
EXAMPLE
<p style='text-align: justify;'>
does not work. What goes instead of justify
?
Using CSS in a UIWebView, how can I make left-to right text flow in a justified manner? What CSS am I looking for?
EXAMPLE
<p style='text-align: justify;'>
does not work. What goes instead of justify
?
just pasted from an old project. Hope it helps.
NSString *css = [NSString stringWithFormat:
@"<html><head><style>body { background-color: trasparent; text-align: %@; font-size: %ipx; color: white;} a { color: #172983; } </style></head><body>",
@"justify",
16];
NSMutableString *desc = [NSMutableString stringWithFormat:@"%@%@<br><br>%@<br><br>%@%@",
css,
sampleText,
sampleText,
sampleText,
@"</body></html>"];
UIWebView *webView = (UIWebView *)[self viewWithTag:WEB_VIEW_TAG];
[webView loadHTMLString:desc baseURL:nil];