在 ios5 上,网站加载正常并且看起来正确。
自 ios6 以来,我网站的一部分使用 png 图像作为其背景开始在 iPad 上呈现,但随后背景无缘无故地变为黑色(注意所有其他部分保持正确的颜色)。
代码:
<section id="showcase">
<section class="container">
<img src="images/usp.jpg" alt="USP Screen" id="screen">
<h2>title</h2>
<p>the text.</p>
<p>The text.</p>
</section></section>
CSS:
#showcase { background: url(../images/showcasebg.png) repeat-x #ededed; height: 600px; position: relative; top: 87px; }
#showcase h2 { float: left; max-width: 422px; font-family: 'Lobster', cursive; font-size: 36px; margin-top: 20px; }
#showcase p { float: left; max-width: 422px; margin-top: 20px; }