Is there a way to remove scrollbars from QWebEngineView
or can i somehow get access to it\'s ScrollArea?
With webkit it was as easy as
Just set QWebEngineSettings::ShowScrollBars
to false which is introduced in Qt 5.10
See QWebEngineSettings::WebAttribute
Changing css style of the webpage worked. I've used
<style type="text/css">
body {
overflow:hidden;
}
</style>
but bad luck for those, who do not have access for css of the webpage you are trying to show the way you want.