How do I centralize a image within a DIV ? ( in html )
How do I centralize a image within a DIV ? ( in html )
You can use <center>...</center>
or put it in CSS:
.minhaimg {
margin-left: auto;
margin-right: auto;
}
If you want to see more: link