开发者

Change the text color in webView

开发者 https://www.devze.com 2023-01-02 14:42 出处:网络
Is there a way to change the text color for entire webView? If it is could you provide me with some开发者_开发知识库 examples?A web view displays a web page, so do it the same way you would do it for

Is there a way to change the text color for entire webView? If it is could you provide me with some开发者_开发知识库 examples?


A web view displays a web page, so do it the same way you would do it for any web page: define a CSS style (inline or in an external, referenced stylesheet):

* {
color: #FFFFFF;
}

... then the page will be rendered with all text the designated color. This works because the * selector applies to all elements and the color property specifies the text color.


It's easily doable from javascript

0

精彩评论

暂无评论...
验证码 换一张
取 消