1. /*设置 tbody高度大于300px时 出现滚动条*/
    2. table tbody {
    3. display: block;
    4. max-height: 300px;
    5. overflow-y: auto;
    6. }
    7. table thead tr {
    8. display: table;
    9. width: 100%;
    10. table-layout: fixed;
    11. }
    12. table tbody tr {
    13. display: table;
    14. width: 100%;
    15. table-layout: fixed;
    16. }