body{
background-color: #d9e2dd;
width: 1024px;
height: 100%;
margin-left: 0px auto;
margin-right: 0px auto;
}
I would be grateful if someone could help me
body{
background-color: #d9e2dd;
width: 1024px;
height: 100%;
margin-left: 0px auto;
margin-right: 0px auto;
}
|
|
|
margin-left:0px auto; margin-right:0px autoisn't the correct usage. When you specify a side like that you only supply one value. The better way to do that would simply be
margin:0 auto;or as da beast used it
margin-left:auto; margin-right:auto
0 members, 1 guests, 0 anonymous users