在 android WebView 中将 <pre></pre> 包装到自定义背景中

Wrap <pre></pre> into custom background in android WebView

我正在开发一个包含 webview 以在其中显示 html 的项目。

我的问题是,如何包装

 tagged text into custom background.

Heres a example text in pre tag

<pre> Welcome to my app, hope you will enjoy </pre>

但每次我只得到文字时,我想在文字后面添加一个背景。

提前致谢...

这也许可以帮助你:https://www.w3schools.com/css/css_background.asp 通常他们将它包裹在标签 <body> 周围。 你需要这样做: body { background-image: url("paper.gif"); }