I load a UIWebView from a string in a navigation based app. I'm using this in a UIWebView's header tag:
<meta name="viewport" content="width=320,height=420,user-scalable=yes,initial-scale=1.0">
I use viewport at 1.0 because image sizes don't have to be readjusted, which is the case without viewport. When the phone is rotated to landscape, the window width is clipped severely and I get a black void on the right side. I'd like the view to fill all the landscape space...and for text to fill use this space, rather than wrapping as much as it does in portrait. Is there a way to get that type of formatting?