<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<style>
html, body {
height:100%;
width:100%;
padding: 0px;
margin: 0px;
overflow: hidden;
}
.scroller {
height:100%;
width:100%;
background-color: grey;
overflow: auto;
padding: 10px;
box-sizing: border-box;
}
.box {
display: inline-block;
background-color: white;
min-width: 100%;
min-height: 100%;
}
.boroda {
display: block;
position: relative;
width:20000px;
height:20000px;
}
</style>
<body>
<div class="scroller">
<div class="box">
<div class="boroda">11</div>
</div>
</div>
</body>
</html>