I have one table data. there thead is fixed. I have added scroll only for tbody
tbody{
display: block;
height: 102px;
overflow-y: auto;
}
SO here, thead and tbody is mismatching in alignment because of scrollbar. Scrollbar takes some widtin tbody
https://jsfiddle.net/MohaideenIsmail/6hm2oaLe/
It is giving like this. how to avoid this?