美文网首页
WKWebview加载HTML字符串适应图片大小

WKWebview加载HTML字符串适应图片大小

作者: 69a8e4612fc7 | 来源:发表于2019-10-29 21:40 被阅读0次

1、如果文字过小,把viewport设置为device-width

<head><meta name='viewport' content='width=device-width, initial-scale=1'></head>

2、图片过大,设置全局图片属性,最大宽度为屏幕宽度,高度自适应

<head><style>img{max-width:100% !important; height:auto!important;}</style></head>

参考:https://www.jianshu.com/p/2f957f0584d1

相关文章

网友评论

      本文标题:WKWebview加载HTML字符串适应图片大小

      本文链接:https://www.haomeiwen.com/subject/eaqnvctx.html