user2885653
user2885653

Reputation: 13

I can't align center a content by using CSS

I can't align center the two block between div class="wrapper-home"

The site is: www.mattialab.it/wp/
I just already try by using in body: text-align: center or margin: 0 auto; without any result. Can anyone tell me where I'm wrong or what is missing? Thanks!

Upvotes: 1

Views: 93

Answers (1)

Keith
Keith

Reputation: 4137

Just add a width to your container div so the margin's know where to start and stop the centering.

CSS

.wrapper-header{
margin: 0 auto;
width:900px;
}

Upvotes: 1

Related Questions