Here is a code snippet that I am working on:
<div id="header">
<p>Home</p>
<p>Home</p>
<p>Home</p>
<p>Home</p>
</div>
I'm trying to display this element centered and inline on the same line. Here's what I've attempted:
#header {
display:inline;
margin-left:auto;
margin-right:auto;
}
However, it doesn't seem to be working as expected.