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;
}
ご回答ありがとうございます :)