How to center the content in a DIV element (My DIV element may contain an image element or anything.)?
I have used the following code:
div#containerDiv
{
margin-left: auto ;
margin-right: auto ;
}
But it is centering the DIV element itself.
I want the content (i.e. image element in the div) to be centered.
The problem with text-align is, it only works horizontally.