Quantcast
Channel: Rainmeter Forums
Viewing all articles
Browse latest Browse all 1638

Community Plugins & Addons • Re: PluginWebView - Make skin using web technology

$
0
0
I have a question guys. How can I remove the scrollbar within the page?
The scrollbar generally appears in a webpage when the area to be displayed is larger than the "viewport" area. Therefore, the easiest way to avoid scrollbars from appearing would be to either reduce the former or enlarge the latter. Other than that, one can "force" scrollbars to not appear even when they would be needed, by adding an overflow: hidden; to the style of the desired HTML element (I suppose that in this case, you're talking about the <body> one). Such a forceful removal can be done in the (embedded or separate) CSS used by the HTML, if any, e.g.:

Code:

body{  overflow: hidden;}
or directly in the HTML code itself, e.g.:

Code:

<body style="margin: 0; overflow: hidden;">  ...  ...your <body> code here...  ...</body>
Take a look at this example:
https://www.w3schools.com/howto/howto_css_hide_scrollbars.asp

Statistics: Posted by Yincognito — 11 minutes ago



Viewing all articles
Browse latest Browse all 1638

Trending Articles