問題:
可能原因:
使用|來分隔選項
原始程式:
位置:https://communitytaiwan.moc.gov.tw/ :112
<ul id="TopNav">
<li>......</li>
|
<li>......</li>
</ul>
建議修改:
刪除|符號
<ul id="TopNav">
<li>......</li>
</ul>
如果需要分隔也可以使用border屬性,並設置當螢幕過窄不顯示
補充:
問題:
可能原因:
position及padding屬性設置錯誤
原始程式:
以 首頁 > 最新消息 > 系統公告 為例
位置:https://communitytaiwan.moc.gov.tw/Content/site.css :1763
.list_local_kpr {
height: 0;
padding-bottom: 66.85%;
}
.list_local_pic {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
overflow: hidden;
}
位置:https://communitytaiwan.moc.gov.tw/Content/site.css :1784
.top_item_txt {
color: #fff;
font-weight: bold;
font-size: 45px;
padding: 20% 5% 0;
}
建議修改:
刪除padding-bottom及position屬性
.list_local_kpr {
height: 0;
}
.list_local_pic {
width: 100%;
height: 100%;
left: 0;
top: 0;
overflow: hidden;
}
修正padding屬性
.top_item_txt {
color: #fff;
font-weight: bold;
font-size: 45px;
padding: 20% 5%;
}
補充:
問題:
可能原因:
使用空格排版
原始程式:
位置:臺北城南.人,與空間的繫聯 - 台灣社區通 :818
<div class="atcl_cnt">
......
<p> 文/張琬琳(臺灣大學臺灣文學研究所博士候選人)</p>
<p> 圖/陳姵潔(國立臺北教育大學南海藝廊執行企劃)</p>
......
</div>
建議修改:
刪除空格並加上float屬性
<div class="atcl_cnt">
......
<p style="float: right;">文/張琬琳(臺灣大學臺灣文學研究所博士候選人)</p>
<p style="float: right;">圖/陳姵潔(國立臺北教育大學南海藝廊執行企劃)</p>
......
</div>
在css中加上clear屬性
p{
clear: both;
}
補充:
問題:
可能原因:
圖片長寬被寫死
原始程式:
位置:https://communitytaiwan.moc.gov.tw/Item/Detail/大林-•-沖繩季節性移工_-故事自己說 :787
<img alt="" src="/File/Get/2db3da35-cfa3-49b9-8c12-a82368928d27" style="width: 800px; height: 400px;">
建議修改:
<img alt="" src="/File/Get/2db3da35-cfa3-49b9-8c12-a82368928d27" style="max-width: 100%;">
補充: