問題:
原始程式:
位置:https://fatraceschool.moe.gov.tw/frontend/
建議修改:
已測試,問題無法複現
網域不同,非檢測範圍
補充:
問題:
可能原因:
多餘表格
原始程式:
位置:預告法規沿革區 - 公告資訊 - 衛生福利部食品藥物管理署 :922
<div class="edit marginBot">
<table class="table" style="font-size: 16px; border-top: black 0pt solid; font-family: sans-serif; border-right: black 0pt solid; width: 604px; white-space: normal; word-spacing: 0px; border-collapse: collapse; border-bottom: black 0pt solid; text-transform: none; font-weight: 400; color: #222222; font-style: normal; margin: -25mm 0mm 0mm; border-left: black 0pt solid; orphans: 2; widows: 2; letter-spacing: normal; background-color: #ffffff; text-indent: 0px; font-variant-ligatures: normal; font-variant-caps: normal; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial" cellspacing="0" cellpadding="0" data-po="0" data-keep-together="-1" data-showinpage="7">
......
</table>
<table class="table" style="font-size: 16px; border-top: black 0pt solid; font-family: sans-serif; border-right: black 0pt solid; width: 604px; white-space: normal; word-spacing: 0px; border-collapse: collapse; border-bottom: black 0pt solid; text-transform: none; font-weight: 400; color: #222222; font-style: normal; margin: -25mm 0mm 0mm; border-left: black 0pt solid; orphans: 2; widows: 2; letter-spacing: normal; background-color: #ffffff; text-indent: 0px; font-variant-ligatures: normal; font-variant-caps: normal; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial" cellspacing="0" cellpadding="0" data-po="0" data-keep-together="-1" data-showinpage="7">
......
</table>
......
</div>
建議修改:
刪除這兩個table
<div class="edit marginBot">
......
</div>
補充:
問題:
可能原因:
圖片長寬設置錯誤
原始程式:
以 [首頁 > 機關介紹 > 業務介紹] 為例
位置:業務介紹 - 機關介紹 - 衛生福利部食品藥物管理署 :917
<img width="800" height="275" title="食品藥物管理署業務介紹摺頁(中文)" alt="食品藥物管理署業務介紹摺頁(中文)" border="0" style="HEIGHT: 275px;WIDTH: 800px;" src="http://www.fda.gov.tw/upload/133/2017112416391180111.jpg">
位置:https://www.fda.gov.tw/TC/css/innerNew.css :135
.edit img {
width:100%;
}
建議修改:
將長寬改為最大長寬
<img title="食品藥物管理署業務介紹摺頁(中文)" alt="食品藥物管理署業務介紹摺頁(中文)" border="0" style="max-height: 275px;max-width: 800px;" src="http://www.fda.gov.tw/upload/133/2017112416391180111.jpg">
加上高度限制
.edit img {
width:100%;
height: auto;
}
補充:
問題:
可能原因:
長英文無換行
原始程式:
位置:便民服務 - 衛生福利部食品藥物管理署
建議修改:
在css中加入a標籤的強制換行
a{
word-break: break-all;
}
補充:
問題:
可能原因:
表格內容過多
原始程式:
位置:便民服務 - 衛生福利部食品藥物管理署
<table cellspacing="0" border="1">
......
</table>
建議修改:
使用帶有overflow署幸的div標籤包起來
<div style="overflow: ">
<table cellspacing="0" border="1">
......
</table>
</div>
補充:
表格向左拖曳示意圖