css center div inside container?
This HTML code works:
<div class="MyContainer" align="center">
<div>THIS DIV IS CENTERED</div>
</div>
But I would like to do it at the css of the container, something like:
.MyContainer{
align: center;
}
So all my containers will center the divs inside.
No comments:
Post a Comment