我需要顯示其下有敷設渠道頁簡單的圖像,讓我們說800x700px &我想這個形象出現在頁面的中心垂直地&水平,垂直和水平居中對齊圖像的網頁
我嘗試了不同的方法,但沒有奏效。下面的示例html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
html, body { height: 100%; width: 100%; }
body { position: relative; background-image:url('images/bg.jpg');background-repeat:repeat; }
#mydiv {
position: absolute;
height: 100%;
width: 100%;
text-align:ceter;
}
</style>
</head>
<body>
</body>
</html>
這是他需要在頁面中心顯示圖像的代碼。沒有其他的CSS需要:'#mydiv img {position:absolute;頂部:50%;剩下:50%; margin:-350px 0 0 -400px; }' – kleinfreund
@kleinfreund正確 –