CSS中,overflow-x: auto时会出现滚动条,通过以下方法自定义滚动样式
.show-table {width: 100%; overflow-x: auto;} .show-table::-webkit-scrollbar,.fixed-table-body::-webkit-scrollbar{ width: 7px; height: 7px; background: #fff; } .show-table::-webkit-scrollbar-track,.fixed-table-body::-webkit-scrollbar-track { background: #fff; border: 1px solid #ddd; margin-right: 4px; } .show-table::-webkit-scrollbar-thumb,.fixed-table-body::-webkit-scrollbar-thumb{ height: 7px; border: 1px solid #ccc; background-color: #e5e5e5; }