HORIZONTAL SCROLLBAR
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
   body {
     overflow-x: scroll;
   }
</style>
</head>
<body>
    <h2> Always show scrollbar </h2>
    <p> Showing only horizontal scrollbar</p>
	
</body>
</html>