0

有谁知道如何在 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;

}

谢谢你的回答:)

4

1 回答 1

0

检查这个小提琴。这是你想要的?

body{
margin:0;
padding:0;

font-family:"Arial", Times, serif;
font-size:10px;
width:100%;
height:100%;


background-image:url('http://storage3d.com/storage/2007.02/2aae1d60e516d24a40230e01ee33a00f.jpg');
background-repeat:no-repeat;
background-position:center;
    background-attachment:fixed;


background-color:#cfddef ;

}
于 2013-10-31T20:11:26.483 回答