問題:
原始程式:
位置:調查局所屬單位地圖 - 法務部調查局
建議修改:
已測試,問題無法複現
補充:
問題:
原始程式:
位置:洽詢電話 - 法務部調查局
建議修改:
已測試,問題無法複現
補充:
問題:
原始程式:
位置:調查局所屬單位地圖 - 法務部調查局
建議修改:
已測試,問題無法複現
補充:
問題:
可能原因:
圖片寬度過大
原始程式:
位置:退休人員 - 法務部調查局 :403
<img alt="朦朧的調查局大樓" src="/userfiles/images/%E9%80%80%E4%BC%91/%E6%9C%80%E6%96%B0%E6%B6%88%E6%81%AF.png" style="width: 500px; height: 281px; float: right;">
建議修改:
改變圖片的寬度限制
<img alt="朦朧的調查局大樓" src="/userfiles/images/%E9%80%80%E4%BC%91/%E6%9C%80%E6%96%B0%E6%B6%88%E6%81%AF.png" style="width: 100%;max-width: 500px;float: right;">
補充:
問題:
可能原因:
長英文不會自動換行
原始程式:
位置:樂活資訊 - 法務部調查局 :340
<a href="http://hospital.kingnet.com.tw/nursing/old/index.html" target="_blank">銀髮照護網http://hospital.kingnet.com.tw/nursing/old/index.html)</a>
建議修改:
css中加入li的word-break屬性
li {
word-break: break-word;
}
補上左括號
<a href="http://hospital.kingnet.com.tw/nursing/old/index.html" target="_blank">銀髮照護網(http://hospital.kingnet.com.tw/nursing/old/index.html)</a>
補充:
問題:
原始程式:
位置:洗錢防制處 - 法務部調查局洗錢防制處
建議修改:
已測試,問題無法複現
補充:
問題:
可能原因:
表格欄位標題被隱藏
原始程式:
位置:資訊公開 - 法務部調查局 :334
<th bgcolor="#CBD5F9" class="col-md-2 hidden-xs">保管場所及注意事項</th>
建議修改:
將hidden的class刪除
<th bgcolor="#CBD5F9" class="col-md-2">保管場所及注意事項</th>
補充:
問題:
可能原因:
nowrap使文字無法換行
原始程式:
位置:https://www.mjib.gov.tw/Content/less/buttons.less :9
.btn {
display: inline-block;
margin-bottom: 0; // For input.btn
font-weight: @btn-font-weight;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
border: 1px solid transparent;
white-space: nowrap;
......
}
建議修改:
刪除white-space
.btn {
display: inline-block;
margin-bottom: 0; // For input.btn
font-weight: @btn-font-weight;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
border: 1px solid transparent;
......
}
補充:
結尾:
可考慮修改margin-bottom屬性,不然按鈕會如上圖黏在一起!
問題:
可能原因:
nowrap使文字無法換行
原始程式:
位置:https://www.mjib.gov.tw/Content/less/buttons.less :9
位置:https://www.mjib.gov.tw/css/new.css :4
a {
color: #000079;
text-decoration: none;
}
建議修改:
同上 [首頁>調查局>[六大重點服務]廉政>肅貪業務專區]
a加上display屬性,可避免連結(案例)遭斷句
a {
color: #000079;
text-decoration: none;
display: inline-block;
}
補充:
問題:
可能原因:
nowrap使文字無法換行
原始程式:
位置:https://www.mjib.gov.tw/Content/less/buttons.less :9
建議修改:
如上 [首頁>調查局>[六大重點服務]廉政>肅貪業務專區]
補充:
問題:
可能原因:
nowrap使文字無法換行
原始程式:
位置:https://www.mjib.gov.tw/Content/less/buttons.less :9
建議修改:
如上 [首頁>調查局>[六大重點服務]廉政>肅貪業務專區]
補充:
問題:
原始程式:
位置:檢舉獎金公式參考計算表 - 法務部調查局
建議修改:
已測試,問題無法複現
補充:
問題:
可能原因:
表格寬度被固定
原始程式:
位置:發放檢舉獎金案件數量及金額統計 - 法務部調查局 :338
以 102年迄105年貪瀆案件檢舉獎金發放統計表 為例
<table border="1" cellpadding="0" cellspacing="0" class="table table-striped" style="width: 100%;" width="450">
<thead>
<tr>
<th nowrap="nowrap" scope="col" style="width: 220px; height: 22px;"><p align="center"><span style="font-size: 18px;">年度</span></p></th>
<th nowrap="nowrap" scope="col" style="width: 59px; height: 22px;"><p align="center"><span style="font-size: 18px;">筆數</span></p></th>
<th nowrap="nowrap" scope="col" style="width: 170px; height: 22px;"><p align="center"><span style="font-size: 18px;">金額(新臺幣)</span></p></th>
</tr>
</thead>
<tbody>
<tr>
<td nowrap="nowrap" style="width: 220px; height: 22px;"><p><span style="font-size: 18px;">102年</span></p></td>
<td nowrap="nowrap" style="width: 59px; height: 22px;"><p align="right"><span style="font-size: 18px;">14</span></p></td>
<td nowrap="nowrap" style="width: 170px; height: 22px;"><p align="right"><span style="font-size: 18px;">1,376萬6,664元</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="width: 220px; height: 22px;"><p><span style="font-size: 18px;">103年</span></p></td>
<td nowrap="nowrap" style="width: 59px; height: 22px;"><p align="right"><span style="font-size: 18px;">11</span></p></td>
<td nowrap="nowrap" style="width: 170px; height: 22px;"><p align="right"><span style="font-size: 18px;">1,183萬3,331元</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="width: 220px; height: 22px;"><p><span style="font-size: 18px;">104年</span></p></td>
<td nowrap="nowrap" style="width: 59px; height: 22px;"><p align="right"><span style="line-height: 25.71px; font-size: 18px;">22</span></p></td>
<td nowrap="nowrap" style="width: 170px; height: 22px;"><p align="right"><span style="font-size: 18px;">2,921萬6,664元</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="width: 220px; height: 22px;"><p><span style="line-height: 25.71px; font-size: 18px;">105年</span></p></td>
<td nowrap="nowrap" style="width: 59px; height: 22px;"><p align="right"><span style="font-size: 18px;">12</span></p></td>
<td nowrap="nowrap" style="width: 170px; height: 22px;"><p align="right"><span style="font-size: 18px;">1,315萬</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="width: 220px; height: 22px;"><p><span style="font-size: 18px;">總計</span></p></td>
<td nowrap="nowrap" style="width: 59px; height: 22px;"><p align="right"><span style="line-height: 25.71px; font-size: 18px;">59</span></p></td>
<td nowrap="nowrap" style="width: 170px; height: 22px;"><p align="right"><span style="font-size: 18px;">6,796萬6,659元</span></p></td>
</tr>
</tbody>
</table>
建議修改:
把寬度限制全删了
<table border="1" cellpadding="0" cellspacing="0" class="table table-striped" style="width: 100%;" width="450">
<thead>
<tr>
<th nowrap="nowrap" scope="col" style="height: 22px;"><p align="center"><span style="font-size: 18px;">年度</span></p></th>
<th nowrap="nowrap" scope="col" style="height: 22px;"><p align="center"><span style="font-size: 18px;">筆數</span></p></th>
<th nowrap="nowrap" scope="col" style="height: 22px;"><p align="center"><span style="font-size: 18px;">金額(新臺幣)</span></p></th>
</tr>
</thead>
<tbody>
<tr>
<td nowrap="nowrap" style="height: 22px;"><p><span style="font-size: 18px;">102年</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">14</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">1,376萬6,664元</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="height: 22px;"><p><span style="font-size: 18px;">103年</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">11</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">1,183萬3,331元</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="height: 22px;"><p><span style="font-size: 18px;">104年</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="line-height: 25.71px; font-size: 18px;">22</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">2,921萬6,664元</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="height: 22px;"><p><span style="line-height: 25.71px; font-size: 18px;">105年</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">12</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">1,315萬</span></p></td>
</tr>
<tr>
<td nowrap="nowrap" style="height: 22px;"><p><span style="font-size: 18px;">總計</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="line-height: 25.71px; font-size: 18px;">59</span></p></td>
<td nowrap="nowrap" style="height: 22px;"><p align="right"><span style="font-size: 18px;">6,796萬6,659元</span></p></td>
</tr>
</tbody>
</table>
補充: