One need just that one line:
html, body {overflow-x:auto;height:100%;}
Full example:
<html>
<head>
<style>
* {margin:0;padding:0;}
html, body {overflow-x:auto;height:100%;}
.header {position:sticky;top:0;left:0;background:#ddd;}
</style>
</head>
<body>
<div class="header">
Logo
</div>
<div style="width:5000px;height:5000px;">
Hello, World! Hello, World! Hello, World!<br>
Hello, World! Hello, World! Hello, World!<br>
Hello, World! Hello, World! Hello, World!<br>
</div>
</body>
</html>
Thanks for the attention
Top comments (0)