問題:
可能原因:
(範例)
RWD 設定錯誤
原始程式:
<div class="pic">
<img src="https://children.moc.gov.tw/resource/book_image/214758.jpg" class="img-responsive __web-inspector-hide-shortcut__" alt="永遠的微笑:達文西">
</div>
建議修改:
如果要等比例縮放:
<div class="pic" style="background-repeat: no-repeat;background-size: 100% 100%;background-image: url(https://children.moc.gov.tw/resource/book_image/214758.jpg);">
</div>
沒有要的話:
<div class="pic" style="background-repeat: no-repeat;background-size: “cover”;background-image: url(https://children.moc.gov.tw/resource/book_image/214758.jpg);">
</div>
補充
問題:
可能原因:
(範例)
RWD 設定錯誤
原始程式:
位置: 原始碼:69
<canvas class="box" id="mainCanvas" width="380" height="380" style="z-index:999;min-width:380px;mix-height:380px"></canvas>
建議修改:
<canvas class="box" id="mainCanvas" width="100%" height="auto" style="z-index:999;/* min-width:380px; */mix-height:380px;"></canvas>
補充