在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; }