4
我有一個全屏幕背景圖像,它保持縱橫比,並在所有瀏覽器中都能正常工作,但在Safari中無法正常工作。我擅長CSS,但在這一點上,我並不確切知道問題所在。看來,Safari瀏覽器有問題保持垂直中心,並創建頂部間隙和底部:Safari CSS問題/背景圖片
<div id="bg">
<div style="display: table-cell">
<table cellpadding="0" cellspacing="0">
<tr>
<td class="loading"><img src="images/home.jpg" /></td>
</tr>
</table>
</div>
</div>
CSS:
html,body,#bg,#bg table,#bg td {
width:100%;
height:100%;
overflow:hidden;
position: relative
}
#bg div{
position:absolute;
width:200%;
height:200%;
top:-50%;
left:-50%
}
#bg td{
vertical-align:middle;
text-align:center
}
#bg img{
min-height:50%;
min-width:50%;
margin:0 auto;
display: table
}
任何CSS
CR這裏
黑客?
確保在CSS樣式表中將「body」和「html」邊距和填充重置爲0。 – Kristy 2013-05-26 17:49:23