Internet Explorer中的中心背景图像

时间:2013-10-31 20:02:54

标签: html css internet-explorer background position

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

}

感谢您的回答:)

1 个答案:

答案 0 :(得分:0)

检查fiddle。这是你想要的?

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 ;

}