I want my table to have fixed thead and scrollable tbody.I applied the following CSS to it:
thead, tbody {
display: block;
}
tbody {
height: 383px;
overflow-y: auto;
overflow-x: auto;
}
After applying above css, thead got fixed, and tbody scrollable. But the data of thead is not aligning with tbody. Even there is a lot of space left in the right hand side of the table, it means tr elements doesn't fill the entire space of their container.
Can anyone please help me to fix this issue?