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 に答える