Ok i have written a CSS code for body
body
{
margin: 0 auto;
}
#header
{
font-family: Georgia,Times,serif;
}
With the CSS code for body everything that's inside the body should be placed in the center of the page because the body is in the center.
In html i have written a paragraph with p tag and an id of header inside the body but the problem is that the paragraph instead of appearing in the center appears at the left most side of the page.
What's the problem shouldn't the P tag appear in center as it is inside the body ?