我正在 WebView 中加载一些 HTML 内容,但它总是出现在我的 WebView 的左上角。
我也尝试使用样式表,在样式表中我添加了与中心相关的标签,但它没有进入中心。样式表中的其他标签工作正常。
如何在 WebView 中设置内容垂直和水平居中?
我的 HTML 代码
<html><head> <style type=\"text/css\"> @font-face { font-family: MyCustomFont; src:url(\"file:///android_asset/fonts/MyriadPro-Regular.otf\") } body { font-family: MyCustomFont; font-size:14; text-align: center;vertical-align:middle;line-height: normal;} </style> </head><body> Hello World </body></html>