HTML TABLE SCROLL BAR
<style>
.table-container {
width: 100%;
overflow-x: auto; /* Enables horizontal scrolling */
border: 1px solid #ddd;
}
</STYLE>
<div class="table-container">
table
</div>
HTML TABLE SCROLL BAR
<style>
.table-container {
width: 100%;
overflow-x: auto; /* Enables horizontal scrolling */
border: 1px solid #ddd;
}
</STYLE>
<div class="table-container">
table
</div>
HTML TABLE SCROLL BAR <style> .table-container { width: 100%; overflow-x: auto; /* Enables horizontal s...