views:

190

answers:

1

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?

+1  A: 

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];
marcio
Thanks. I figured it out, but this is accurate enough.
Moshe