Wednesday, 2 October 2013

How to center a div with a relative width?

How to center a div with a relative width?

I have a <div> which is styled as following:
.content{
width: 70%;
}
To center a div, there is the possibility to set the margin to auto
(margin: 0 auto;) but this only works if I have a fixed size(e.g. 400px).
So how can I center my div with relative width?

No comments:

Post a Comment