Reputation: 26
I think I am having a simple problem but I cannot figure it out!
<body>
<div id="centerme"/><p>I am a div. I want to be centered.</p>
</body>
#centerme{
margin: auto;
}
Upvotes: 0
Views: 28
Reputation: 105
try closing your div tag and see if that solves your problem.
<body>
<div id="centerme"><p>I am a div. I want to be centered.</p> </div>
</body>
#centerme{
margin: auto;
}
Upvotes: 1