私はこのhtmlを持っています:
<body>
<div id="maindiv" class="rounded">
something written
</div>
</body>
このCSSで:
body {
background-image: url('stjohnhusimages/green gradient.png');
background-repeat: no-repeat;
width:1024px;
height:1375px;
background-size: cover;
text-align:center;
}
#maindiv {
width:900px;
height:1275px;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
background-color:#404853;
}
しかし、メインの div はまだ左に揃えられています。私が間違っているのだろうか。
助けてくれてありがとう!