I can not center the image! [duplicate]

0

How do I centralize a image within a DIV ? ( in html )

    
asked by anonymous 03.08.2017 / 02:16

1 answer

0

You can use <center>...</center> or put it in CSS:

.minhaimg {
    margin-left: auto;
    margin-right: auto;
}

If you want to see more: link

    
03.08.2017 / 02:28