Skip to main content

Posts

Showing posts with the label position sticky not working in edge

Position Sticky Not Working in IE11 and edge

Below css class ( table-sticky-row ) position sticky ( position : sticky ) not working in IE11 and Edge . .table-sticky-row {     position : sticky ;     bottom : 0 ;     right : 0 ;     background : rgba(0, 211, 211, 1.6) ; } The sticky doesn't work on IE11/edge, but luckily, in this case, we can use position : fixed , which will work on both older and newer browsers i.e. table.header-sticky-scroll > tbody {     display : block ;     height : 150px ;     overflow : auto ; } table.header-sticky-scroll thead , tbody tr {     display : table ;     width : 100% ;     table-layout : fixed ; } table.header-sticky-scroll thead {     width : calc( 100% - 1em ) } As an Example, CSS Code looks like-  < style >     table.header-s...