scroll ngang css
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div{
height:200px;
width:500px;
padding:15px;
border:1px solid black;
overflow-x:scroll;
}
p{
height:150px;
width:450px;
border:1px solid brown;
}
</style>
</head>
<body>
<div>
<p>
</p>
</div>
</body>
</html>