Answers for "scroll ngang css"

CSS
0

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>
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language