<div class="menu">
<div class="menucenter">
</div>
</div>
.menu {
position: fixed
width:100%;
height:100vh;
max-height: 100%;
}
.menucenter {
position: relative;
overflow-x: scroll;
height: 100%;
width: 200%;
}
<code lang="html">
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.menu
{position: fixed
width:100%;
height:100vh;
max-height: 100%;
}
.menucenter
{position: relative;
background: #000;
overflow: auto;
height: 400px;
}
.menucenter p {
width: 200%;
}
</style>
</head>
<body>
<div class="menu">
<div class="menucenter">
<p> text</p>
</div>
</div>
</body>
</html>
</code>