Looking to create a temporary reading tool to enhance my English skills for the IELTS exam. Currently, I am working on incorporating 1-40 answer fields on the right-hand side of the screen.
https://i.sstatic.net/EwoMM.png
I'm facing issues with scrolling through all the answer input fields from 1-40 as they are currently not scrollable. I've attempted using the overflow-y
CSS property without success.
.sidepanel {
width: 0;
position: fixed;
z-index: 1;
height: 100%;
top: 0;
right: 0;
background-color: #111;
transition: 0.5s;
padding-top: 60px;
}
<div id="mySidepanel" class="sidepanel">
<div class="container">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">Close</a>
<div class="row">
<div class="col-md-12">
<h6 class="text-center">Answer-sheet</h6>
<!-- Additional inputs and labels omitted -->
</div>
</div>
</div>
</div>