how to make a div scrollable
<div id="" style="overflow:scroll; height:400px;">
how to make a div scrollable
<div id="" style="overflow:scroll; height:400px;">
how to make scrollable table in html
----- Horizontally scrollable -----
<!-- A responsive table will display a horizontal scroll bar if the screen is
too small to display the full content.
To create a responsive table,
add a container element with --> overflow-x:auto <!-- around the --> <table> :
<div style="overflow-x:auto;">
<table>
...
</table>
</div>
----- Vertically scrollable -----
<!-- Just add the display:block to the thead > tr and tbody.
check the below example -->
html>body tbody.scrollContent {
display: block;
overflow: auto;
}
<div>
<table>
<thead class="fixedHeader">
</thead>
<tbody class="scrollContent">
</tbody>
</table>
</div
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us