Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to set the scroll in bootstrap4 table body

table {
    display: flex;
    flex-flow: column;
    width: 100%;
}

thead {
    flex: 0 0 auto;
}

tbody {
    flex: 1 1 auto;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

tr {
    width: 100%;
    display: table;
    table-layout: fixed;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #set #scroll #table #body
ADD COMMENT
Topic
Name
5+4 =