Frank
Frank

Reputation: 26

centering div with css and html

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

Answers (1)

Kay
Kay

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

Related Questions