CSS for Scroll bar

<!DOCTYPE html>

<html>

  <head>

  <style>

    .overFlowCls {

      overflow:scroll;

      width: 200px;

      height: 65px;

    }

  </style>

  </head>

  <body>

  <div class=”overFlowCls”>

    Sample Testing<br/>

    Sample Testing<br/>

    Sample Testing<br/>

    Sample Testing<br/>

    Sample Testing

    </div>

  </body>

</html>

Output:

Leave a Reply