Answers for "how to make a scrollable list in html"

0

how to make a scrollable list in html

<style>
  .container
  {
    overflow: scroll;
  }
</style>
<div class="container">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
  <div>4</div>
</div>
Posted by: Guest on July-10-2021

Code answers related to "how to make a scrollable list in html"

Browse Popular Code Answers by Language