views:

18

answers:

1

Is it possible to load a website with my own local css, ignoring the css used by the site? in UIWebView.

A: 

You can use inline styles to override stylesheets: <div style=" font-size: 10px; ... "> ... </div>

danyim