Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 UIWebView 来显示 HTML 中的本地内容。我希望内容在每一侧都缩进,以免触摸屏幕的一侧。问题是内容在 UiWebView 中,所以当我调整 webview 的大小时,滚动条会伸出(见下图)。
我无计可施,试图解决这个问题。
使 UIWebView 边缘到边缘,然后您可以注入以下 CSS 代码,或将其直接添加到文件中(因为您说它们在应用程序包中)。
div.myContent { padding-right:50px; padding-left:50px; }
你当然可以改变div.myContent任何你想要的。这样,滚动条保持在边缘,但两侧的内容缩进。
div.myContent