Css source code for scrollbars

Css source code for scrollbars 

 <html>

   <head>

      <style type = "text/css">

         .scroll {

            display:block;

            border: 1px solid red;

            padding:5px;

            margin-top:5px;

            width:300px;

            height:50px;

            overflow:scroll;

         }

         .auto {

            display:block;

            border: 1px solid red;

            padding:5px;

            margin-top:5px;

            width:300px;

            height:50px;

            overflow:auto;

         }

      </style>

   </head>


   <body>

      <p>Example of scroll value:</p>

      <div class = "scroll">

         tech.thinkforu.org is only  for free source code 

      </div>

      <br />

      

      <p>Example of auto value:</p>

      

      <div class = "auto">

        this is the example of auto scroller bar in css in html

      </div>

   </body>

</html> 

Comments

Last 7 Days

How to use referrerpolicy Attribute value (strict-origin ) with < iframe > tag in HTML ? with example

Tag is used to create inline frame ?

How to add Amazon website inside iframe?

How to use referrerpolicy Attribute value ( no-referrer-when-downgrade ) with < iframe > tag in HTML ? with example

Difference between Public vs Internal vs Private state variables in solidity programming langauge with example ?