css - Vertical scrollbar is not working properly in html table -
i need set scroll tbody if number of records more time view records using scroll bar. have used vertical scrollbar tbody of table. scrollbar working correctly in case column values(tbody) coming under single th column. how resolve one? in sample have used css tbody
tbody { height: calc(100vh - 340px); display: block; width: 100%; overflow-y: auto; }
add in css class. work.
table ,tr td{ border:1px solid red } tbody { display:block; height:50px; overflow:auto; height: calc(100vh - 360px); } thead, tbody tr { display:table; width:100%; table-layout:fixed; } thead { width: calc( 100% - 1em ) } table { width:400px; }
updated js fiddle https://jsfiddle.net/vinothsm92/pl1wqaj1/12/
Comments
Post a Comment