$(".product-detail-tabbox table").each(function () {
$(this).wrapAll('<div class="table-scroll"><div class="table-wrap"></div></div>');
})
.table-scroll {
overflow-x: auto;
width: 100%;
}
.table-scroll table {
width: 100% !important;
}
@media (max-width: 990px) {
.table-wrap {
width: 900px !important;
}
}
注意:.product-detail-tabbox 这个类名根据当前网站里命名的类名来确定, 不是固定。