問題
可能原因
是用過時的table tag難以做rwd
原始程式
位置:
https://www.mof.gov.tw/LinkList/Index?nodeid=38:221
<table><tbody><tr><td><a tabindex="230" href="https://www.ntbna.gov.tw/etwmain/front/ETW118W/CON/2312/8518910661208036947">小規模營業人導入行動支付<img src="/File/Banner/38/Banner_78170.JPG" alt="小規模營業人導入行動支付" width="150" height="50"></a></td><td><a tabindex="231" href="https://www.nta.gov.tw/_admin/_upload/InfoImg/13/data/%E7%A8%85%E6%94%B6%E8%B6%85%E5%BE%B5%E7%94%A8%E5%8E%BB%E5%8F%A8%E4%BD%8D.pdf">超徵稅收用去叨位?<img src="/File/Banner/38/Banner_78623.jpg" alt="超徵稅收用去叨位?" width="150" height="50"></a></td><td><a tabindex="232" href="https://www.nta.gov.tw/_admin/_upload/InfoImg/12/data/1070319懶人包(更新).pdf">稅收超徵懶人包<img src="/File/Banner/38/Banner_77509.jpg" alt="稅收超徵懶人包" width="150" height="50"></a></td><td><a tabindex="233" href="https://www.ntbsa.gov.tw/etwmain/front/ETW118W/CON/2360/5078859071636444817">外籍旅客退稅專區<img src="/File/Banner/38/Banner_75638.jpg" alt="外籍旅客退稅專區" width="150" height="50"></a></td><td><a tabindex="234" href="http://www.mof.gov.tw/List/Index?nodeid=1497">納稅者權利保護專區<img src="/File/Banner/38/Banner_74999.jpg" alt="納稅者權利保護專區" width="150" height="50"></a></td></tr><tr><td><a tabindex="235" href="https://www.dot.gov.tw/ch/home.jsp?id=13&parentpath=0">境外電商營業稅專區<img src="/File/Banner/38/Banner_77787.jpg" alt="境外電商營業稅專區" width="150" height="50"></a></td><td><a tabindex="236" href="https://www.dot.gov.tw/ch/home.jsp?id=12&parentpath=0">友善租稅環境專區<img src="/File/Banner/38/Banner_73518.jpg" alt="友善租稅環境專區" width="150" height="50"></a></td><td><a tabindex="237" href="https://www.nta.gov.tw/web/AnnD/uptAnnD.aspx?c0=235&p0=7427">中央政府債務說明<img src="/File/Banner/38/Banner_65115.jpg" alt="中央政府債務說明" width="150" height="50"></a></td></tr></tbody></table>
建議修改
改使用div 加 flex的布局
<div class="container" style="width:100%;display:flex;flex-wrap:wrap;">
<div class="col" style="width:150px;">
<a href="https://www.ntbna.gov.tw/etwmain/front/ETW118W/CON/2312/8518910661208036947">小規模營業人導入行動支付<img src="/File/Banner/38/Banner_78170.JPG" alt="小規模營業人導入行動支付" width="150" height="50"></a>
</div>
<div class="col" style="width:150px;">
<a href="https://www.nta.gov.tw/_admin/_upload/InfoImg/13/data/%E7%A8%85%E6%94%B6%E8%B6%85%E5%BE%B5%E7%94%A8%E5%8E%BB%E5%8F%A8%E4%BD%8D.pdf">超徵稅收用去叨位?<img src="/File/Banner/38/Banner_78623.jpg" alt="超徵稅收用去叨位?" width="150" height="50"></a>
</div>
<div class="col" style="width:150px;">
<a href="https://www.nta.gov.tw/_admin/_upload/InfoImg/12/data/1070319懶人包(更新).pdf">稅收超徵懶人包<img src="/File/Banner/38/Banner_77509.jpg" alt="稅收超徵懶人包" width="150" height="50"></a>
</div>
<div class="col" style="width:150px;">
<a href="http://www.mof.gov.tw/List/Index?nodeid=1497">納稅者權利保護專區<img src="/File/Banner/38/Banner_74999.jpg" alt="納稅者權利保護專區" width="150" height="50"></a>
</div>
<div class="col" style="width:150px;">
<a href="https://www.dot.gov.tw/ch/home.jsp?id=13&parentpath=0">境外電商營業稅專區<img src="/File/Banner/38/Banner_77787.jpg" alt="境外電商營業稅專區" width="150" height="50"></a>
</div>
<div class="col" style="width:150px;">
<a href="https://www.dot.gov.tw/ch/home.jsp?id=12&parentpath=0">友善租稅環境專區<img src="/File/Banner/38/Banner_73518.jpg" alt="友善租稅環境專區" width="150" height="50"></a>
</div>
<div class="col" style="width:150px;">
<a href="https://www.nta.gov.tw/web/AnnD/uptAnnD.aspx?c0=235&p0=7427">中央政府債務說明<img src="/File/Banner/38/Banner_65115.jpg" alt="中央政府債務說明" width="150" height="50"></a>
</div>
</div>
補充
問題
可能原因
寬度寫死
原始程式
位置:
https://www.mof.gov.tw/VDetail/Index?nodeid=120&pid=59726:247
<img alt="" src="http://www.mof.gov.tw/File/PageUpload/chmap.gif">
建議修改
改成100%
<img alt="" src="http://www.mof.gov.tw/File/PageUpload/chmap.gif" style="width:100%;">
補充
問題
可能原因
table沒限制寬度,且使用空格不穩定排版
原始程式
位置:
https://www.mof.gov.tw/Detail/Index?nodeid=1481&pid=78355&ban=Y:257
<table style="width: 918px; height: 113px;" width="918" cellspacing="0" cellpadding="0" height="113" border="0">
建議修改
將table的寬度改成100%
<table style="border-collapse: collapse;width: 100%;word-wrap: break-word;table-layout: fixed;" width="918" cellspacing="0" cellpadding="0" height="113" border="0">
補充