Is there a way to always show vertical scroll bars for a wxHTMLWindow
?
The styles only mention of wxHW_SCROLLBAR_NEVER
and wxHW_SCROLLBAR_AUTO
.
My HTML has only a table, and looks horrible when the scroll bar disappears leaving a wide gap on the left..
Another workaround could be centering the table in the body, so that there's equal gap on both sides.. but <table align="center">
centers the text within the table, and not the table itself, unlike in other browsers.
So how do i solve this?
Why not adjust the table to the width of the window? <table width=100%>