問題:
可能原因:
表格寬度無法隨螢幕縮放條紙比例,導致跑版。
原始程式:
位置:view-source:http://www.taiwanplace21.org.tw/SightseeingActive.php
243行
<table class="table table-striped word-style-2 table-bordered">
<tbody>
<tr>
<th></th>
<th style="min-width:200px;">觀光工廠</th>
<th style="min-width:150px;">洽詢專線</th>
<th style="min-width:150px;">優惠活動內容</th>
<th style="min-width:150px;">優惠日期</th>
</tr>
.
.
.
</table>
建議修改:
如不想破壞表格結構,可在表格增設水平滾輪,供使用者左右滑動檢視。
作法:在table外增設<div style="overflow:auto;"></div>
。
<div style="overflow:auto;">
<table class="table table-striped word-style-2 table-bordered">
<tbody>
<tr>
<th></th>
<th style="min-width:200px;">觀光工廠</th>
<th style="min-width:150px;">洽詢專線</th>
<th style="min-width:150px;">優惠活動內容</th>
<th style="min-width:150px;">優惠日期</th>
</tr>
.
.
.
</table>
</div>
補充:
(修正後之截圖)

問題:
可能原因:
表格內th標籤寬度為固定數值,導致跑版。
原始程式:
位置:view-source:http://www.taiwanplace21.org.tw/NewsList.php
231行
<tr style="background-color: #E1F5FE;">
<th style="min-width:200px;">新聞主題</th>
<th style="min-width:120px;">發佈日期</th>
<th style="min-width:120px;">來源</th>
</tr>
建議修改:
將th標籤的寬度改為百分比。
<tr style="background-color: #E1F5FE;">
<th style="width: 40%;">新聞主題</th>
<th style="width: 30%;">發佈日期</th>
<th style="width: 30%;">來源</th>
</tr>
補充:
(修正後之截圖)
