有谁知道如何在 Internet Explorer 的页面上居中图像?我用这个,但是没用
body{
margin:0;
padding:0;
font-family:"Arial", Times, serif;
font-size:10px;
width:100%;
height:100%;
background-image:url('background.png') center top;
background-position:center top;
background-repeat:no-repeat;
background-color:#cfddef ;
}
这也没有用
body{
margin:0;
padding:0;
font-family:"Arial", Times, serif;
font-size:10px;
width:100%;
height:100%;
background: #cfddef url("background.png") no-repeat center top;
}
谢谢你的回答:)