No scrollbar
Showing a page with overflow, with no scrollbar
HTML
<div></div>
CSS
html, body, div {
height:100%;
width:100%;
margin:0;
padding:0;
}
div {
height:200%;
background: radial-gradient(red, yellow, green);
}
::-webkit-scrollbar {
-webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
width: 0px;
}
::-webkit-scrollbar:horizontal {
height: 0px;
}