Table fixed header and scrollable body

前端 未结 29 1736
粉色の甜心
粉色の甜心 2020-11-22 05:33

I am trying to make a table with fixed header and a scrollable content using the bootstrap 3 table. Unfortunately the solutions I have found does not work with bootstrap or

29条回答
  •  Happy的楠姐
    2020-11-22 06:03

    HTML

    
    
    
        RoboPage
        
        
    
    
    
    
            
    First Name Last Name E-mail
    Top Row Doe johndoe@email.com
    John Doe johndoe@email.com
    John Doe johndoe@email.com
    John Doe johndoe@email.com
    John Doe johndoe@email.com
    John Doe johndoe@email.com

    CSS

    thead,tbody,tr,td,th{
        display:block;
    }
    tbody{
        height:200px;
        overflow-y:auto;
        width: 100%;
    }
    thead > tr > th, tbody > tr > td{
        float:left;
    }
    

提交回复
热议问题