Skip to content Skip to sidebar Skip to footer

How To Add Scroll To Django Rendered Table?

So here's the table. When I give height:500px it modifies each row's height and never the table's height and if I add overflow-y:scroll to table, tbody it doesn't work. The number

Solution 1:

Try adding this in your css

#telemetry_table1 {
    position:relative;
    overflow:auto;
}

Post a Comment for "How To Add Scroll To Django Rendered Table?"