可能的原因:
看起來是 RWD 寫得不好
原始程式:
https://www.wranb.gov.tw/GIPDSD/xslGip/xslExport/5/main_html5//css/design.css
/* Mobile */
@media only screen and (max-width: 767px) {
table.tablelist01in { margin-bottom: 0; }
.pinned { position: absolute; left: 0; top: 0; background: #fff; width: 25%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
.pinned table { border-right: none; border-left: none; width: 100%; }
.pinned table th, .pinned table td { white-space: nowrap; }
.pinned td:last-child { border-bottom: 0; }
div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
div.table-wrapper div.scrollable table { margin-left: 25%; }
div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }
table.tablelist01in td, table.tablelist01in th { position: relative; white-space: nowrap; overflow: hidden; }
table.tablelist01in th:first-child, table.tablelist01in td:first-child, table.tablelist01in td:first-child, table.tablelist01in.pinned td { display: none; }
.slogan {
display: none;
}
}
建議修改:
/* Mobile */
@media only screen and (max-width: 800px) {
table.tablelist01in { margin-bottom: 0; }
.pinned { position: absolute; left: 0; top: 0; background: #fff; width: 25%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
.pinned table { border-right: none; border-left: none; width: 100%; }
.pinned table th, .pinned table td { white-space: nowrap; }
.pinned td:last-child { border-bottom: 0; }
div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
div.table-wrapper div.scrollable table { margin-left: 25%; }
div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }
table.tablelist01in td, table.tablelist01in th { position: relative; white-space: nowrap; overflow: hidden; }
table.tablelist01in th:first-child, table.tablelist01in td:first-child, table.tablelist01in td:first-child, table.tablelist01in.pinned td { display: none; }
.slogan {
display: none;
}
}