主要:当我加载我的网页(有9张图片)时,某些时候图像根本没有加载,有时他们会加载。有时只有一些和其他人根本没有。
次要:图像完全填入div(如100%),同时期望33%。
我使用三星Galaxy Note 3 10.1上的默认Android浏览器(firefox和chrome可以完美运行)。该平板电脑使用的是Android 4.2.2
当我在我的网页中替换这段代码时:
<figure class="maxRight33">
<img src="/img/picture.png" />
</figure>
有了这个:
<div class="maxRight33">
<img src="/img/sharp-cv-p09fr-s.png" />
</div>
然后一切正常。但我喜欢使用,因为有一些reasong,而不是div。 这个webbrowser有问题吗?
这是css代码:
.maxRight33 {max-width:33%;float:right;margin-left:1rem}
img {max-width:100%;height:auto;border:0}
figure {display:table}
figure img {display:block;width:100%;}