I'm just fiddling with something....would appreciate some input.
If I have some HTML code with CSS and put it into ui.webview.load_html() it seems it cannot handle all CSS parameters.
I don't know the scope of CSS that it can handle, but I found that table properties don't seem to work.
Simple Example to use as html to pass to load_html():
<html><style>table {border-width:1px}</style><table><tr><td>This table should have a border</td></tr></table></html>
It won't have a border. At least from what I've tried!
However, the below method will provide a border, however this is poor way to go about things in html:
<html><table border = 1><tr><td>This table should have a border</td></tr></table></html>
Is there something I should do to get that working....?
Also note: ui.Webview itself handles CSS properly if I load an actual webpage (load_url).