如何使用Swift WKWebView加载大尺寸的html页面内容

时间:2018-08-23 10:57:07

标签: html ios swift wkwebview

我是WKWebView的新手,我正用它从应用程序中的URL加载隐私策略。 html加载完美,但是内容太小,我发现很难在5s或iPhone SE等小屏幕设备上阅读。 在这里image of wkwebview

有什么办法可以扩大这个内容? 请让我知道解决此问题的最佳方法。 谢谢。

1 个答案:

答案 0 :(得分:0)

在隐私文件(privacy.html)中使用一些CSS。

<head>
    <style>
       html {
            height:100%;
       }
       body {
            font-family: "SourceSansPro-Semibold", Arial, serif; //your font
            font-size:large; //change this size to what fits
            background-color:#FFF;
            color: #000;
            margin:0;
            height:100%;
            padding:20px;
        }
    </style>
</head>